diff options
author | gj <gj@FreeBSD.org> | 2000-04-04 11:12:55 +0000 |
---|---|---|
committer | gj <gj@FreeBSD.org> | 2000-04-04 11:12:55 +0000 |
commit | f9d6885bc63fb12e2c69fde2071e2c31c5fae5bf (patch) | |
tree | 96df0776d148c192359df53ccfe5bc3ebf6cd8ec /gnu | |
parent | 45392a5096c603280d152a3c812b49f3f3934d88 (diff) | |
download | FreeBSD-src-f9d6885bc63fb12e2c69fde2071e2c31c5fae5bf.zip FreeBSD-src-f9d6885bc63fb12e2c69fde2071e2c31c5fae5bf.tar.gz |
Add a '+' to the first LDADD, otherwise it clobbers the LDADD in
Makefile.alpha such that the -lkvm disappears and the link fails.
This time I tested it, honest :)
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/gdb/Makefile b/gnu/usr.bin/binutils/gdb/Makefile index c31e956..5565e4f 100644 --- a/gnu/usr.bin/binutils/gdb/Makefile +++ b/gnu/usr.bin/binutils/gdb/Makefile @@ -40,7 +40,7 @@ DPADD+= ${LIBREADLINE} DPADD+= ${LIBGNUREGEX} DPADD+= ${RELTOP}/libiberty/libiberty.a DPADD+= ${LIBTERMCAP} -LDADD= ${RELTOP}/libbfd/libbfd.a +LDADD+= ${RELTOP}/libbfd/libbfd.a LDADD+= ${RELTOP}/libopcodes/libopcodes.a LDADD+= -lreadline LDADD+= -lgnuregex |