cd ${.CURDIR} before installing, since no files in the obj directory

This commit is contained in:
Andrey A. Chernov 1997-04-02 16:56:56 +00:00
parent 8fd0ef3952
commit 7afe3a8a33
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24557
2 changed files with 6 additions and 4 deletions

View File

@ -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>

View File

@ -1,4 +1,4 @@
# $Id$
# $Id: Makefile,v 1.18 1997/02/22 13:56:38 peter Exp $
KEYMAPS= INDEX.keymaps
KEYMAPS+= be.iso.kbd
@ -21,7 +21,8 @@ NOMAN = noman
NOOBJ = noobj
install:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${KEYMAPS} \
cd ${.CURDIR} && \
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${KEYMAPS} \
${DESTDIR}${MAPSDIR}
.include <bsd.prog.mk>