diff options
author | Julian Ospald <hasufell@gentoo.org> | 2014-05-04 14:53:50 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2014-05-04 14:53:50 +0000 |
commit | b1af697f866f642c13eab4b176a7385dee5c89e7 (patch) | |
tree | 64d0802a22e6a1511a3c895a00b41367cd225c86 /games-strategy | |
parent | Stable for amd64, wrt bug #509268 (diff) | |
download | gentoo-2-b1af697f866f642c13eab4b176a7385dee5c89e7.tar.gz gentoo-2-b1af697f866f642c13eab4b176a7385dee5c89e7.tar.bz2 gentoo-2-b1af697f866f642c13eab4b176a7385dee5c89e7.zip |
fix build if CC has whitespace
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/uqm/ChangeLog | 7 | ||||
-rw-r--r-- | games-strategy/uqm/uqm-0.7.0-r2.ebuild | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/games-strategy/uqm/ChangeLog b/games-strategy/uqm/ChangeLog index cf1e733e6a2b..31386b038c5f 100644 --- a/games-strategy/uqm/ChangeLog +++ b/games-strategy/uqm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-strategy/uqm -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/uqm/ChangeLog,v 1.43 2013/01/22 18:07:55 mr_bones_ Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/uqm/ChangeLog,v 1.44 2014/05/04 14:53:50 hasufell Exp $ + + 04 May 2014; Julian Ospald <hasufell@gentoo.org> uqm-0.7.0-r2.ebuild: + fix build if CC has whitespace 22 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -uqm-0.7.0-r1.ebuild: old diff --git a/games-strategy/uqm/uqm-0.7.0-r2.ebuild b/games-strategy/uqm/uqm-0.7.0-r2.ebuild index ec8dda4523c9..ef9ec373aa64 100644 --- a/games-strategy/uqm/uqm-0.7.0-r2.ebuild +++ b/games-strategy/uqm/uqm-0.7.0-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/uqm/uqm-0.7.0-r2.ebuild,v 1.4 2012/11/22 10:08:14 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/uqm/uqm-0.7.0-r2.ebuild,v 1.5 2014/05/04 14:53:50 hasufell Exp $ EAPI=2 inherit eutils multilib toolchain-funcs games @@ -65,7 +65,7 @@ src_prepare() { # respect CC sed -i \ - -e 's/PROG_gcc_FILE="gcc"/PROG_gcc_FILE="'$(tc-getCC)'"/' \ + -e "s/PROG_gcc_FILE=\"gcc\"/PROG_gcc_FILE=\"$(tc-getCC)\"/" \ build/unix/config_proginfo_build \ || die "sed config_proginfo_build failed" } |