diff options
author | 2012-02-06 22:34:47 +0000 | |
---|---|---|
committer | 2012-02-06 22:34:47 +0000 | |
commit | a66eea378d7ba75699e3edd8006ec157bbcc6b52 (patch) | |
tree | 92aceebb50732d595692b2681e0e13bc40a98458 /games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild | |
parent | media-gfx/blender: 3D mouse support (bug #390427) (diff) | |
download | historical-a66eea378d7ba75699e3edd8006ec157bbcc6b52.tar.gz historical-a66eea378d7ba75699e3edd8006ec157bbcc6b52.tar.bz2 historical-a66eea378d7ba75699e3edd8006ec157bbcc6b52.zip |
use instead of /tmp - bug #402459
Package-Manager: portage-2.1.10.44/cvs/Linux i686
Diffstat (limited to 'games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild')
-rw-r--r-- | games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild b/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild index 7fc22e73bd0e..82e0e5264383 100644 --- a/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild +++ b/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild,v 1.3 2012/01/28 15:22:33 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/scummvm-tools/scummvm-tools-1.4.0.ebuild,v 1.4 2012/02/06 22:34:47 mr_bones_ Exp $ EAPI=2 WX_GTK_VER=2.8 @@ -30,10 +30,13 @@ S=${WORKDIR}/${P/_/} src_prepare() { rm -rf *.bat dists/win32 + # use $T instead of /tmp - bug #402459 + sed -i \ + -e 's:/tmp:"${T}":' \ + configure || die sed -ri \ -e '/^(CC|CXX)\b/d' \ - Makefile \ - || die "sed failed" + Makefile || die } src_configure() { |