diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-02-16 22:21:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-02-16 22:21:09 +0000 |
commit | 7f5e191f8457e9935c39b9d5f975d9ff06db2945 (patch) | |
tree | 99ce97e58f549bdd75353a4f792291945fc91dc0 /sys-libs/gdbm/files | |
parent | Version bump. (diff) | |
download | gentoo-2-7f5e191f8457e9935c39b9d5f975d9ff06db2945.tar.gz gentoo-2-7f5e191f8457e9935c39b9d5f975d9ff06db2945.tar.bz2 gentoo-2-7f5e191f8457e9935c39b9d5f975d9ff06db2945.zip |
Respect user LDFLAGS #209730 by Diego.
(Portage version: 2.2_pre2)
Diffstat (limited to 'sys-libs/gdbm/files')
-rw-r--r-- | sys-libs/gdbm/files/gdbm-1.8.3-build.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sys-libs/gdbm/files/gdbm-1.8.3-build.patch b/sys-libs/gdbm/files/gdbm-1.8.3-build.patch new file mode 100644 index 000000000000..084f5a1d247a --- /dev/null +++ b/sys-libs/gdbm/files/gdbm-1.8.3-build.patch @@ -0,0 +1,21 @@ +Respect system LDFLAGS when generating gdbm libs + +http://bugs.gentoo.org/209730 + +--- Makefile.in ++++ Makefile.in +@@ -146,12 +146,12 @@ + + libgdbm.la: $(LOBJS) gdbm.h + rm -f libgdbm.la +- $(LIBTOOL) --mode=link $(CC) -o libgdbm.la -rpath $(libdir) \ ++ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o libgdbm.la -rpath $(libdir) \ + -version-info $(SHLIB_VER) $(LOBJS) + + libgdbm_compat.la: $(C_LOBJS) gdbm.h libgdbm.la + rm -f libgdbm_compat.la +- $(LIBTOOL) --mode=link $(CC) -o libgdbm_compat.la -rpath $(libdir) \ ++ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o libgdbm_compat.la -rpath $(libdir) \ + -version-info $(SHLIB_VER) $(C_LOBJS) libgdbm.la + + gdbm.h: gdbm.proto gdbmerrno.h gdbm.proto2 |