diff options
author | Ned Ludd <solar@gentoo.org> | 2007-10-21 11:15:08 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2007-10-21 11:15:08 +0000 |
commit | 0fccccb34e002aba2a36d6ad4dfd63f568ff2aa0 (patch) | |
tree | 56778d1c6eb956113862f55f1fb9065845c8957d /mail-mta/postfix/postfix-2.3.8.ebuild | |
parent | Version bump. (diff) | |
download | historical-0fccccb34e002aba2a36d6ad4dfd63f568ff2aa0.tar.gz historical-0fccccb34e002aba2a36d6ad4dfd63f568ff2aa0.tar.bz2 historical-0fccccb34e002aba2a36d6ad4dfd63f568ff2aa0.zip |
- make postfix respect user defined LDFLAGS. 192885
Package-Manager: portage-2.1.3.9
Diffstat (limited to 'mail-mta/postfix/postfix-2.3.8.ebuild')
-rw-r--r-- | mail-mta/postfix/postfix-2.3.8.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail-mta/postfix/postfix-2.3.8.ebuild b/mail-mta/postfix/postfix-2.3.8.ebuild index 3bfb514a9b7d..d6baa9f63c43 100644 --- a/mail-mta/postfix/postfix-2.3.8.ebuild +++ b/mail-mta/postfix/postfix-2.3.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.3.8.ebuild,v 1.2 2007/03/29 15:30:20 drizzt Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.3.8.ebuild,v 1.3 2007/10/21 11:15:08 solar Exp $ # NOTE: this ebuild is regular ebuild without mailer-config support # comment lines below "regular ebuild" and uncomment lines below "mailer-config support" @@ -181,7 +181,8 @@ src_compile() { # added -Wl,-z,now wrt 62674. # remove -ldl as it is not necessary, resolve bug #106446. # -Wl,-z,now replaced by $(bindnow-flags) - local mycc="-DHAS_PCRE" mylibs="$(bindnow-flags) -L/usr/lib -lpcre -lcrypt -lpthread" + # make sure LDFLAGS get passed down to the executables. + local mycc="-DHAS_PCRE" mylibs="$(bindnow-flags) ${LDFLAGS} -lpcre -lcrypt -lpthread" use pam && mylibs="${mylibs} -lpam" |