diff options
author | peter <peter@FreeBSD.org> | 1998-06-11 10:39:32 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-06-11 10:39:32 +0000 |
commit | 29d129a6ab5af0f0f0997510260fbd9c67704e97 (patch) | |
tree | 706a6ab3d442cbda3be5af2814dbc16f0f4f60e5 /lib | |
parent | 69c5433237c3d7f2fd79de1059652cf3b5bade42 (diff) | |
download | FreeBSD-src-29d129a6ab5af0f0f0997510260fbd9c67704e97.zip FreeBSD-src-29d129a6ab5af0f0f0997510260fbd9c67704e97.tar.gz |
Sigh, mkdep doesn't know about all the CFLAGS to pass during depend
generation.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libbind/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libbind/Makefile b/lib/libbind/Makefile index 902ec60..acfa485 100644 --- a/lib/libbind/Makefile +++ b/lib/libbind/Makefile @@ -2,8 +2,9 @@ BIND_DIR=${.CURDIR}/../../contrib/bind -CFLAGS+= -idirafter ${BIND_DIR}/port/freebsd/include \ - -idirafter ${BIND_DIR}/include +# contrib/bind/include/* must not override any real system includes +CFLAGS+= -I${BIND_DIR}/port/freebsd/include -I${DESTDIR}/usr/include \ + -I${BIND_DIR}/include LIB= bind |