aboutsummaryrefslogtreecommitdiff
path: root/share/syscons/fonts/Makefile
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-04-02 16:56:56 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-04-02 16:56:56 +0000
commit7afe3a8a337ccdab4045901e7e72339cb04b7289 (patch)
treed74d35eb3977b14f761db7d3ea5a65cc0148a49e /share/syscons/fonts/Makefile
parent8fd0ef3952e14c007203296e2a22261f42989fab (diff)
cd ${.CURDIR} before installing, since no files in the obj directory
Notes
Notes: svn path=/head/; revision=24557
Diffstat (limited to 'share/syscons/fonts/Makefile')
-rw-r--r--share/syscons/fonts/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/share/syscons/fonts/Makefile b/share/syscons/fonts/Makefile
index dc3355f869a6..3512071380b6 100644
--- a/share/syscons/fonts/Makefile
+++ b/share/syscons/fonts/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.12 1997/02/22 13:56:36 peter Exp $
FONTS= cp437-8x8.fnt cp437-8x14.fnt cp437-8x16.fnt \
cp437-thin-8x8.fnt cp437-thin-8x16.fnt \
@@ -21,7 +21,8 @@ NOMAN = noman
NOOBJ = noobj
install:
- ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FONTS} \
+ cd ${.CURDIR} && \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FONTS} \
${DESTDIR}${FONTDIR}
.include <bsd.prog.mk>