diff options
author | Bruce M Simpson <bms@FreeBSD.org> | 2004-03-31 20:58:39 +0000 |
---|---|---|
committer | Bruce M Simpson <bms@FreeBSD.org> | 2004-03-31 20:58:39 +0000 |
commit | 457180a40db4289e10eab15797b146f132d44fa2 (patch) | |
tree | b42e725033ad9153aa88362187bf25bd04caf581 /usr.sbin/ndp/Makefile | |
parent | 001407b9c2ad84628555805d647396c4e23ef144 (diff) | |
download | src-457180a40db4289e10eab15797b146f132d44fa2.tar.gz src-457180a40db4289e10eab15797b146f132d44fa2.zip |
Unbreak the build by dealing with an unexpected dependency on tcpdump source
present in ndp(8).
The vendor branch import uses a _U_ macro to apply the GCC 'unused' attribute
to the rcs ids embedded in each source file. Teach ndp about this.
Notes
Notes:
svn path=/head/; revision=127687
Diffstat (limited to 'usr.sbin/ndp/Makefile')
-rw-r--r-- | usr.sbin/ndp/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/ndp/Makefile b/usr.sbin/ndp/Makefile index 2af816bfdf12..c35dfc7f5eaa 100644 --- a/usr.sbin/ndp/Makefile +++ b/usr.sbin/ndp/Makefile @@ -21,5 +21,6 @@ SRCS= ndp.c gmt2local.c CFLAGS+= -DINET6 CFLAGS+= -I. -I${.CURDIR} -I${.CURDIR}/../../contrib/tcpdump +CFLAGS+= -D_U_="" .include <bsd.prog.mk> |