diff options
author | 2008-02-19 12:57:07 +0000 | |
---|---|---|
committer | 2008-02-19 12:57:07 +0000 | |
commit | 08fb5c455af1b1fe244088521e818bc0cef16ffc (patch) | |
tree | 3941a7cf6d4fa742e8a492ae39410cee4f855820 /sys-auth | |
parent | Remove LICENSE dodoc. (diff) | |
download | gentoo-2-08fb5c455af1b1fe244088521e818bc0cef16ffc.tar.gz gentoo-2-08fb5c455af1b1fe244088521e818bc0cef16ffc.tar.bz2 gentoo-2-08fb5c455af1b1fe244088521e818bc0cef16ffc.zip |
Fix patch to also respect CFLAGS.
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/pam_passwdqc/ChangeLog | 6 | ||||
-rw-r--r-- | sys-auth/pam_passwdqc/files/pam_passwdqc-1.0.5-makefile.patch | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sys-auth/pam_passwdqc/ChangeLog b/sys-auth/pam_passwdqc/ChangeLog index 1cc63355848c..4a503c39ccb2 100644 --- a/sys-auth/pam_passwdqc/ChangeLog +++ b/sys-auth/pam_passwdqc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-auth/pam_passwdqc # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_passwdqc/ChangeLog,v 1.9 2008/02/19 12:54:35 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_passwdqc/ChangeLog,v 1.10 2008/02/19 12:57:06 flameeyes Exp $ + + 19 Feb 2008; Diego Pettenò <flameeyes@gentoo.org> + files/pam_passwdqc-1.0.5-makefile.patch: + Fix patch to also respect CFLAGS. 19 Feb 2008; Diego Pettenò <flameeyes@gentoo.org> pam_passwdqc-1.0.4.ebuild, pam_passwdqc-1.0.5.ebuild: diff --git a/sys-auth/pam_passwdqc/files/pam_passwdqc-1.0.5-makefile.patch b/sys-auth/pam_passwdqc/files/pam_passwdqc-1.0.5-makefile.patch index 2ae74686ead9..b1158f2a9cb9 100644 --- a/sys-auth/pam_passwdqc/files/pam_passwdqc-1.0.5-makefile.patch +++ b/sys-auth/pam_passwdqc/files/pam_passwdqc-1.0.5-makefile.patch @@ -2,11 +2,13 @@ Index: pam_passwdqc-1.0.5/Makefile =================================================================== --- pam_passwdqc-1.0.5.orig/Makefile +++ pam_passwdqc-1.0.5/Makefile -@@ -8,7 +8,7 @@ RM = rm -f +@@ -7,8 +7,8 @@ LD = $(CC) + RM = rm -f MKDIR = mkdir -p INSTALL = install -c - CFLAGS = -Wall -fPIC -O2 +-CFLAGS = -Wall -fPIC -O2 -LDFLAGS = --shared ++CFLAGS = -Wall -fPIC -O2 $(OPTCFLAGS) +LDFLAGS_GENERIC = --shared LDFLAGS_LINUX = --shared -Wl,--version-script,$(MAP) LDFLAGS_SUN = -G |