diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2010-08-27 09:39:28 +0000 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2010-08-27 09:39:28 +0000 |
commit | 80bfe9a175419cddb2783c73db02ed6c2a484524 (patch) | |
tree | 95b049e780246a88f4470ff71ad5b41cbbc85d2f /sci-electronics/balsa/files | |
parent | Respect LDFLAGS wrt bug 334781. Thanks to Diego for the report. Drop old. (diff) | |
download | historical-80bfe9a175419cddb2783c73db02ed6c2a484524.tar.gz historical-80bfe9a175419cddb2783c73db02ed6c2a484524.tar.bz2 historical-80bfe9a175419cddb2783c73db02ed6c2a484524.zip |
Respect LDFLAGS wrt bug #333855. Thanks for reporting Diego.
Package-Manager: portage-2.1.8.3/cvs/Linux i686
Diffstat (limited to 'sci-electronics/balsa/files')
-rw-r--r-- | sci-electronics/balsa/files/4.0-ldflags.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sci-electronics/balsa/files/4.0-ldflags.patch b/sci-electronics/balsa/files/4.0-ldflags.patch new file mode 100644 index 000000000000..74df6c075c29 --- /dev/null +++ b/sci-electronics/balsa/files/4.0-ldflags.patch @@ -0,0 +1,11 @@ +--- bin/balsa-make-builtin-lib.in.orig 2010-08-27 11:14:54.000000000 +0200 ++++ bin/balsa-make-builtin-lib.in 2010-08-27 11:15:09.000000000 +0200 +@@ -89,7 +89,7 @@ + # Test compilation + if [ -n "${DOCOMPILE}" ]; then + if ${LIBTOOL} --mode=compile @CC@ @CFLAGS@ -c ${INCLUDES} -o ${LIBNAME}.o $* && +- ${LIBTOOL} --mode=link @CC@ @CFLAGS@ -o ${LIBNAME}.la -c ${INCLUDES} ${LIBNAME}.lo -rpath ${INSTALLDIR} -module ++ ${LIBTOOL} --mode=link @CC@ @CFLAGS@ @LDFLAGS@ -o ${LIBNAME}.la -c ${INCLUDES} ${LIBNAME}.lo -rpath ${INSTALLDIR} -module + then + : + else |