From 78944dcef14bedd81e1464adcb22d73aa1c9fb79 Mon Sep 17 00:00:00 2001 From: sheldonh Date: Wed, 25 Jul 2001 12:21:27 +0000 Subject: Fix breakage introduced in rev 1.26, with the introduction of absoluate pathnames starting with /usr/src. This fixes the installworld target for the case where the source tree is not in /usr/src. --- usr.bin/doscmd/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/doscmd') diff --git a/usr.bin/doscmd/Makefile b/usr.bin/doscmd/Makefile index c533134..f2bbe8e 100644 --- a/usr.bin/doscmd/Makefile +++ b/usr.bin/doscmd/Makefile @@ -77,15 +77,15 @@ cp437-8x16.pcf.gz: cp437-8x16.pcf.gz.uu uudecode ${.CURDIR}/cp437-8x16.pcf.gz.uu font8x8.h: - uudecode -p /usr/src/share/syscons/fonts/cp437-8x8.fnt | \ + uudecode -p ${.CURDIR}/share/syscons/fonts/cp437-8x8.fnt | \ file2c 'u_int8_t font8x8[] = {' '};' > ${.TARGET} font8x14.h: - uudecode -p /usr/src/share/syscons/fonts/cp437-8x14.fnt | \ + uudecode -p ${.CURDIR}/share/syscons/fonts/cp437-8x14.fnt | \ file2c 'u_int8_t font8x14[] = {' '};' > ${.TARGET} font8x16.h: - uudecode -p /usr/src/share/syscons/fonts/cp437-8x16.fnt | \ + uudecode -p ${.CURDIR}/share/syscons/fonts/cp437-8x16.fnt | \ file2c 'u_int8_t font8x16[] = {' '};' > ${.TARGET} emsdriv.sys: emsdriv.sys.uu -- cgit v1.1