Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (15c80c340e24bb479e5da858db899cec47565fd6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (15c80c340e24bb479e5da858db899cec47565fd6)
  • Date: Thu, 7 May 2009 12:35:35 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

libs/libcfg+/BUILD | 11 ++++++++---
libs/libcfg+/HISTORY | 6 ++++++
2 files changed, 14 insertions(+), 3 deletions(-)

New commits:
commit 15c80c340e24bb479e5da858db899cec47565fd6
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libcfg+: Fix passing linker flags properly to ld
When the build passes directly to ld, instead of through gcc,
strip the '-Wl,' prefix
See http://www.gentoo.org/proj/en/qa/asneeded.xml

diff --git a/libs/libcfg+/BUILD b/libs/libcfg+/BUILD
index bf752b9..d1ff701 100755
--- a/libs/libcfg+/BUILD
+++ b/libs/libcfg+/BUILD
@@ -1,3 +1,8 @@
-LDFLAGS=${LDFLAGS/-Wl,-O1/} &&
-LDFLAGS=${LDFLAGS/-Wl,--as-needed/} &&
-default_build
+./configure --prefix=${INSTALL_ROOT}/usr \
+ --sysconfdir=${INSTALL_ROOT}/etc \
+ --localstatedir=${INSTALL_ROOT}/var \
+ --mandir=${INSTALL_ROOT}/usr/share/man \
+ --infodir=${INSTALL_ROOT}/usr/share/info \
+ $OPTS &&
+
+make LDFLAGS="${LDFLAGS//-Wl,}"
diff --git a/libs/libcfg+/HISTORY b/libs/libcfg+/HISTORY
index 7500000..d423069 100644
--- a/libs/libcfg+/HISTORY
+++ b/libs/libcfg+/HISTORY
@@ -1,3 +1,9 @@
+2009-05-07 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD: Fix passing linker flags properly to ld
+ When the build passes directly to ld, instead of through gcc,
+ strip the '-Wl,' prefix
+ See http://www.gentoo.org/proj/en/qa/asneeded.xml
+
2009-03-14 Eric Sandall <sandalle AT sourcemage.org>
* INSTALL: Fails to install with multiple make jobs




  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (15c80c340e24bb479e5da858db899cec47565fd6), Eric Sandall, 05/07/2009

Archive powered by MHonArc 2.6.24.

Top of Page