aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1999-01-04 12:36:23 +0000
committerBruce Evans <bde@FreeBSD.org>1999-01-04 12:36:23 +0000
commit19d108e89e7d19760d2e223476b87c05b53872ef (patch)
tree970193c5e1889c4cc98a14187e2761ba06bf5c2d /usr.bin
parent1ff0f342b71283dda49343688afd12e6efdb5b22 (diff)
downloadsrc-19d108e89e7d19760d2e223476b87c05b53872ef.tar.gz
src-19d108e89e7d19760d2e223476b87c05b53872ef.zip
Backed out previous commit. The bug was in rev.1.49 of src/Makefile.inc1,
so it can't be completely fixed here. Putting -I paths to the current headers in CFLAGS is more likely to break things than fix them, since there is no reason why current headers should work with old libraries. Other Makefiles that do this may only work because they are not used early in the bootstrap. However, the usual problem with errno being defined in terms of a nonexistent library doesn't seem to occur here, since we don't reference errno.
Notes
Notes: svn path=/head/; revision=42286
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/rpcgen/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/rpcgen/Makefile b/usr.bin/rpcgen/Makefile
index 36b46e3a6f2d..d0e4c14c1be6 100644
--- a/usr.bin/rpcgen/Makefile
+++ b/usr.bin/rpcgen/Makefile
@@ -8,6 +8,6 @@ MAN1= rpcgen.1
# This is a kludge to work around the fact that this program
# uses 'inline' as a variable name.
#
-CFLAGS+=-Dinline=rpcgen_inline -I${.CURDIR}/../../include -I${.CURDIR}/../../sys/i386/include -I${.CURDIR}/../../include/rpc -I${.CURDIR}/../../sys/sys
+CFLAGS+=-Dinline=rpcgen_inline
.include <bsd.prog.mk>