diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2012-08-18 10:38:40 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2012-08-18 10:38:40 +0000 |
commit | 9505ddb8dd2315c8573a4aa5aae61aab09a9d5b7 (patch) | |
tree | faa5d50bed4fad44dffa7e8bb0063b3f2ead5333 /font | |
parent | 68b7d17443c9ce1d48e0d9e77c4173352308ae2e (diff) |
let build and release proceed through the exact same steps, avoiding
nasty surprises...
REQUIRES current /usr/share/mk (cd /usr/src/share/mk && make install)
okay matthieu@
Diffstat (limited to 'font')
-rw-r--r-- | font/alias/Makefile.bsd-wrapper | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/font/alias/Makefile.bsd-wrapper b/font/alias/Makefile.bsd-wrapper index 648dcb10c..f2e604d96 100644 --- a/font/alias/Makefile.bsd-wrapper +++ b/font/alias/Makefile.bsd-wrapper @@ -1,9 +1,12 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.2 2008/03/20 20:54:57 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.3 2012/08/18 10:38:39 espie Exp $ afterinstall: @if test -z "$(DESTDIR)"; then \ echo "running fc-cache";\ fc-cache -s -v ;\ + else \ + echo "running fc-cache under $(DESTDIR)";\ + fc-cache -c ${DESTDIR} -s -v ;\ fi .include <bsd.xorg.mk> |