Gentoo Archives: gentoo-commits

From: "Thomas Beierlein (tomjbe)" <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-electronics/balsa/files: 4.0-ldflags.patch
Date: Fri, 27 Aug 2010 09:39:32
Message-Id: 20100827093928.61E7D20054@flycatcher.gentoo.org
1 tomjbe 10/08/27 09:39:28
2
3 Added: 4.0-ldflags.patch
4 Log:
5 Respect LDFLAGS wrt bug #333855. Thanks for reporting Diego.
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 sci-electronics/balsa/files/4.0-ldflags.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/balsa/files/4.0-ldflags.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/balsa/files/4.0-ldflags.patch?rev=1.1&content-type=text/plain
13
14 Index: 4.0-ldflags.patch
15 ===================================================================
16 --- bin/balsa-make-builtin-lib.in.orig 2010-08-27 11:14:54.000000000 +0200
17 +++ bin/balsa-make-builtin-lib.in 2010-08-27 11:15:09.000000000 +0200
18 @@ -89,7 +89,7 @@
19 # Test compilation
20 if [ -n "${DOCOMPILE}" ]; then
21 if ${LIBTOOL} --mode=compile @CC@ @CFLAGS@ -c ${INCLUDES} -o ${LIBNAME}.o $* &&
22 - ${LIBTOOL} --mode=link @CC@ @CFLAGS@ -o ${LIBNAME}.la -c ${INCLUDES} ${LIBNAME}.lo -rpath ${INSTALLDIR} -module
23 + ${LIBTOOL} --mode=link @CC@ @CFLAGS@ @LDFLAGS@ -o ${LIBNAME}.la -c ${INCLUDES} ${LIBNAME}.lo -rpath ${INSTALLDIR} -module
24 then
25 :
26 else