diff options
author | bde <bde@FreeBSD.org> | 1999-01-04 12:36:23 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-01-04 12:36:23 +0000 |
commit | 6aac368054bf175444936698c72674821f637e13 (patch) | |
tree | d7f6af2ac09f084e29449023ae4d0421bd3c33e0 /usr.bin/rpcgen/Makefile | |
parent | 289384ff72727977121b211962226808bec92e67 (diff) | |
download | FreeBSD-src-6aac368054bf175444936698c72674821f637e13.zip FreeBSD-src-6aac368054bf175444936698c72674821f637e13.tar.gz |
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.
Diffstat (limited to 'usr.bin/rpcgen/Makefile')
-rw-r--r-- | usr.bin/rpcgen/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/rpcgen/Makefile b/usr.bin/rpcgen/Makefile index 36b46e3..d0e4c14 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> |