diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2010-08-14 20:10:09 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2010-08-14 20:10:09 +0000 |
commit | a83f493f2159d0b33ad4da0ad4a13fae92ae7616 (patch) | |
tree | 923e688fb742eb62a2bc5082163265f9f93e963a /app-arch/unzip | |
parent | Fix quoting (diff) | |
download | gentoo-2-a83f493f2159d0b33ad4da0ad4a13fae92ae7616.tar.gz gentoo-2-a83f493f2159d0b33ad4da0ad4a13fae92ae7616.tar.bz2 gentoo-2-a83f493f2159d0b33ad4da0ad4a13fae92ae7616.zip |
Fix quoting
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/unzip')
-rw-r--r-- | app-arch/unzip/ChangeLog | 5 | ||||
-rw-r--r-- | app-arch/unzip/unzip-6.0-r1.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-arch/unzip/ChangeLog b/app-arch/unzip/ChangeLog index b365ce2fad58..3467d7cfe113 100644 --- a/app-arch/unzip/ChangeLog +++ b/app-arch/unzip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/unzip # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.70 2010/08/02 20:31:44 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.71 2010/08/14 20:10:09 truedfx Exp $ + + 14 Aug 2010; Harald van Dijk <truedfx@gentoo.org> unzip-6.0-r1.ebuild: + Fix quoting 02 Aug 2010; Jeroen Roovers <jer@gentoo.org> unzip-6.0-r1.ebuild: Stable for PPC too. diff --git a/app-arch/unzip/unzip-6.0-r1.ebuild b/app-arch/unzip/unzip-6.0-r1.ebuild index e28b5f3e5995..e4c980a6a6d4 100644 --- a/app-arch/unzip/unzip-6.0-r1.ebuild +++ b/app-arch/unzip/unzip-6.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r1.ebuild,v 1.12 2010/08/02 20:31:44 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-6.0-r1.ebuild,v 1.13 2010/08/14 20:10:09 truedfx Exp $ inherit eutils toolchain-funcs flag-o-matic @@ -28,9 +28,9 @@ src_unpack() { -e '/^CFLAGS/d' \ -e '/CFLAGS/s:-O[0-9]\?:$(CFLAGS) $(CPPFLAGS):' \ -e '/^STRIP/s:=.*:=true:' \ - -e "s:\<CC=gcc\>:CC=$(tc-getCC):" \ - -e "s:\<LD=gcc\>:LD=$(tc-getCC):" \ - -e "s:\<AS=gcc\>:AS=$(tc-getCC):" \ + -e "s:\<CC=gcc\>:CC=\"$(tc-getCC)\":" \ + -e "s:\<LD=gcc\>:LD=\"$(tc-getCC)\":" \ + -e "s:\<AS=gcc\>:AS=\"$(tc-getCC)\":" \ -e 's:LF2 = -s:LF2 = :' \ -e 's:LF = :LF = $(LDFLAGS) :' \ -e 's:SL = :SL = $(LDFLAGS) :' \ |