Added a missing ${DESTDIR}. The real problem is that stuff related to

floppy formatting is in /sys/i386/isa/fdreg.h, it should be in /usr/include
somewhere ??
This commit is contained in:
Poul-Henning Kamp 1994-09-18 07:42:11 +00:00
parent dfc5d1d4eb
commit cb3131379f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2852

View File

@ -4,6 +4,6 @@ PROG = fdformat
# the -I's seem to be confusing, but necessery this way
# (so the right <unistd.h> will be found in /usr/include, and the
# "../i386/isa/ic/nec765.h" included from fdreg.h is accessible, too)
CFLAGS+= -Wall -I/sys
CFLAGS+= -Wall -I${DESTDIR}/sys
.include <bsd.prog.mk>