summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2009-01-03 17:57:52 +0000
committerChristoph Mende <angelos@gentoo.org>2009-01-03 17:57:52 +0000
commit6bda2947dee680227bb2e808a59abdd93400810f (patch)
tree4df2c221c1a2d757b8ec31424431469beda62c0d /app-crypt
parentBug 251415 not solved, reverting previous change. (diff)
downloadgentoo-2-6bda2947dee680227bb2e808a59abdd93400810f.tar.gz
gentoo-2-6bda2947dee680227bb2e808a59abdd93400810f.tar.bz2
gentoo-2-6bda2947dee680227bb2e808a59abdd93400810f.zip
QA: Respect LDFLAGS
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/aesutil/ChangeLog7
-rw-r--r--app-crypt/aesutil/aesutil-1.0.7.ebuild7
2 files changed, 9 insertions, 5 deletions
diff --git a/app-crypt/aesutil/ChangeLog b/app-crypt/aesutil/ChangeLog
index f9e313fbddc6..69d249514491 100644
--- a/app-crypt/aesutil/ChangeLog
+++ b/app-crypt/aesutil/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-crypt/aesutil
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/ChangeLog,v 1.7 2008/12/30 16:35:22 mpagano Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/ChangeLog,v 1.8 2009/01/03 17:57:52 angelos Exp $
+
+ 03 Jan 2009; Christoph Mende <angelos@gentoo.org> aesutil-1.0.7.ebuild:
+ QA: Respect LDFLAGS
30 Dec 2008; Mike Pagano <mpagano@gentoo.org> aesutil-1.0.7.ebuild:
Fixed hardcoded CC as per bug #243534
diff --git a/app-crypt/aesutil/aesutil-1.0.7.ebuild b/app-crypt/aesutil/aesutil-1.0.7.ebuild
index fbc978a646bb..9385df4aeaae 100644
--- a/app-crypt/aesutil/aesutil-1.0.7.ebuild
+++ b/app-crypt/aesutil/aesutil-1.0.7.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/aesutil-1.0.7.ebuild,v 1.5 2008/12/30 16:35:22 mpagano Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/aesutil-1.0.7.ebuild,v 1.6 2009/01/03 17:57:52 angelos Exp $
inherit toolchain-funcs
@@ -21,7 +21,8 @@ S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
- sed -e "s:CFLAGS=-g -Wall:CFLAGS=-g -Wall ${CFLAGS}:" Makefile.linux > Makefile
+ sed -e "/^CFLAGS/s:-g -Wall:${CFLAGS}:" Makefile.linux > Makefile
+ sed -i -e "/^LDFLAGS/s:-g:${LDFLAGS}:" Makefile
}
src_compile() {