diff options
author | Andrey Grozin <grozin@gentoo.org> | 2015-04-20 10:43:40 +0000 |
---|---|---|
committer | Andrey Grozin <grozin@gentoo.org> | 2015-04-20 10:43:40 +0000 |
commit | af4af2d85fcd1a01b32c78ba65bddfc1e61d2e04 (patch) | |
tree | ad50b2628b74df0dbf8d11a1434c7877e819e315 /dev-lisp | |
parent | Linux patch 3.14.39 (diff) | |
download | gentoo-2-af4af2d85fcd1a01b32c78ba65bddfc1e61d2e04.tar.gz gentoo-2-af4af2d85fcd1a01b32c78ba65bddfc1e61d2e04.tar.bz2 gentoo-2-af4af2d85fcd1a01b32c78ba65bddfc1e61d2e04.zip |
Fixed CFLAGS handling, closing #544070
(Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 0x3AFFCE974D34BD8C!)
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/sbcl/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lisp/sbcl/sbcl-1.2.10.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-lisp/sbcl/ChangeLog b/dev-lisp/sbcl/ChangeLog index 9c3caaa6774a..78d59ee9b28a 100644 --- a/dev-lisp/sbcl/ChangeLog +++ b/dev-lisp/sbcl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lisp/sbcl # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.220 2015/04/14 12:14:12 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/ChangeLog,v 1.221 2015/04/20 10:43:40 grozin Exp $ + + 20 Apr 2015; Andrey Grozin <grozin@gentoo.org> sbcl-1.2.10.ebuild: + Fixed CFLAGS handling, closing #544070 *sbcl-1.2.10 (14 Apr 2015) diff --git a/dev-lisp/sbcl/sbcl-1.2.10.ebuild b/dev-lisp/sbcl/sbcl-1.2.10.ebuild index 04f6ea3fb889..b78f6abb81b2 100644 --- a/dev-lisp/sbcl/sbcl-1.2.10.ebuild +++ b/dev-lisp/sbcl/sbcl-1.2.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.2.10.ebuild,v 1.1 2015/04/14 12:14:12 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/sbcl/sbcl-1.2.10.ebuild,v 1.2 2015/04/20 10:43:40 grozin Exp $ EAPI=5 inherit multilib eutils flag-o-matic pax-utils @@ -109,7 +109,7 @@ src_prepare() { fi # bug #526194 - sed -e "s@CFLAGS =@CFLAGS = ${CFLAGS}@" \ + sed -e "s@CFLAGS =.*\$@CFLAGS = ${CFLAGS} -g -Wall -Wsign-compare@" \ -e "s@LINKFLAGS =@LINKFLAGS = ${LDFLAGS}@" \ -i src/runtime/GNUmakefile || die |