diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2005-03-29 00:55:43 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2005-03-29 00:55:43 +0000 |
commit | ca754024405300e4dcf481f01c6e6d6879e0cd1f (patch) | |
tree | 0e604c2f856bab5e38e41613ba685d9c867a061a | |
parent | 4afae354bd16a8be30bc2c3f4edc7dee769c428b (diff) | |
download | pkgsrc-ca754024405300e4dcf481f01c6e6d6879e0cd1f.tar.gz |
make sure LDFLAGS gets followed when linking gdb. Fixes a problem
with libintl and libiconv not being found on solaris.
-rw-r--r-- | devel/gdb/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/gdb/Makefile b/devel/gdb/Makefile index 063cec1efba..50f3afcf890 100644 --- a/devel/gdb/Makefile +++ b/devel/gdb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2004/10/03 00:13:27 tv Exp $ +# $NetBSD: Makefile,v 1.19 2005/03/29 00:55:43 dmcmahill Exp $ # DISTNAME= gdb-5.3 @@ -19,6 +19,7 @@ REPLACE_LOCALEDIR_PATTERNS+= Make-in INSTALL_TARGET= install install-info TEST_TARGET= check INFO_FILES= bfd.info gdb.info gdbint.info mmalloc.info stabs.info +CONFIGURE_ENV+= CONFIG_LDFLAGS=${LDFLAGS:Q} .include "../../mk/bsd.prefs.mk" |