summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2010-08-10 15:14:13 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2010-08-10 15:14:13 +0000
commit9eea2ad1c043efbee2ec08d01e28a69b676a827f (patch)
tree8ac58892bc85d293a6d63a8d72797d6eb2d79a04 /app-admin/paxtest
parentVersion bump. (diff)
downloadgentoo-2-9eea2ad1c043efbee2ec08d01e28a69b676a827f.tar.gz
gentoo-2-9eea2ad1c043efbee2ec08d01e28a69b676a827f.tar.bz2
gentoo-2-9eea2ad1c043efbee2ec08d01e28a69b676a827f.zip
Respect LDFLAGS wrt bug 332011. Thanks to Diego for report.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/paxtest')
-rw-r--r--app-admin/paxtest/ChangeLog6
-rw-r--r--app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch3
2 files changed, 7 insertions, 2 deletions
diff --git a/app-admin/paxtest/ChangeLog b/app-admin/paxtest/ChangeLog
index 979eb148aacf..dff15da46944 100644
--- a/app-admin/paxtest/ChangeLog
+++ b/app-admin/paxtest/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/paxtest
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/ChangeLog,v 1.37 2010/08/09 12:31:06 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/paxtest/ChangeLog,v 1.38 2010/08/10 15:14:13 xarthisius Exp $
+
+ 10 Aug 2010; Kacper Kowalik <xarthisius@gentoo.org>
+ files/paxtest-0.9.9-Makefile.patch:
+ Respect LDFLAGS wrt bug 332011. Thanks to Diego for report.
*paxtest-0.9.9 (09 Aug 2010)
diff --git a/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch b/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch
index ebf46999f1e8..07ba933c9449 100644
--- a/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch
+++ b/app-admin/paxtest/files/paxtest-0.9.9-Makefile.patch
@@ -12,9 +12,10 @@ diff -Naur paxtest-0.9.9.orig/Makefile paxtest-0.9.9/Makefile
# define stripping of binaries/libs here, or set these on make's commandline,
# else you'll loose the chpax flags!
-LDFLAGS :=
+-SHLDFLAGS :=
+# Gentoo's LDFLAGS should be honored
+LDFLAGS := $(LDFLAGS)
- SHLDFLAGS :=
++SHLDFLAGS := $(LDFLAGS)
ifndef RUNDIR
RUNDIR := .
@@ -136,7 +138,7 @@