diff options
author | bde <bde@FreeBSD.org> | 1996-09-05 17:16:10 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-09-05 17:16:10 +0000 |
commit | 11546f4616454e8fe6b6b85898bc2f22f9930985 (patch) | |
tree | 235e8fcbe852dee096eebfd2c176b6d10c0afa2c /gnu/lib | |
parent | 38fd8fd26ef8cf2f925107c1267dd58f6e623be9 (diff) | |
download | FreeBSD-src-11546f4616454e8fe6b6b85898bc2f22f9930985.zip FreeBSD-src-11546f4616454e8fe6b6b85898bc2f22f9930985.tar.gz |
Fixed DPADD.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libg++/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/lib/libg++/Makefile b/gnu/lib/libg++/Makefile index 5b4ece6..6ec0942 100644 --- a/gnu/lib/libg++/Makefile +++ b/gnu/lib/libg++/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.11 1995/08/06 12:22:53 bde Exp $ +# $Id: Makefile,v 1.12 1996/08/30 02:09:09 peter Exp $ # SRCS= bitand.c bitany.c bitblt.c bitclear.c bitcopy.c bitcount.c \ bitinvert.c bitlcomp.c bitset1.c bitxor.c cleanup.c except.c \ @@ -29,8 +29,8 @@ NOMAN= noman CFLAGS+= -nostdinc -I${.CURDIR}/include -I/usr/include CXXFLAGS+= -I${.CURDIR}/include -I/usr/include/g++ -I/usr/include \ -nostdinc++ -LDADD+= -lcurses -lcompat -lgcc_pic -DPADD+= ${LIBCURSES} ${LIBCOMPAT} +DPADD= ${LIBCURSES} ${LIBCOMPAT} ${LIBGCC_PIC} +LDADD= -lcurses -lcompat -lgcc_pic .PATH: ${.CURDIR}/libiberty ${.CURDIR}/libio ${.CURDIR}/libg++ ${.CURDIR}/librx beforeinstall: |