diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-08-14 18:09:10 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-08-14 18:09:10 +0000 |
commit | 6818896de7a566639cf91c63a6ce73d9959ad9bf (patch) | |
tree | 5b554d51e7ac25ba20d355dd9f0225479d0f08a8 /eclass | |
parent | Attempt to fix generation of hwaccel configure option, bug #332755 (diff) | |
download | gentoo-2-6818896de7a566639cf91c63a6ce73d9959ad9bf.tar.gz gentoo-2-6818896de7a566639cf91c63a6ce73d9959ad9bf.tar.bz2 gentoo-2-6818896de7a566639cf91c63a6ce73d9959ad9bf.zip |
Typo
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 6f2ce8aa3e39..b32b181c131d 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.81 2010/08/14 18:00:38 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.82 2010/08/14 18:09:10 hwoarang Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -230,7 +230,7 @@ qt4-build_src_prepare() { if version_is_at_least 4.6; then find ./config.tests/unix -name "*.test" -type f -exec grep -lZ \$MAKE '{}' \; | \ xargs -0 \ - sed -e "s:\(\$MAKE\):\1 CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getCXX)" "LINK=$(tc-getCXX)":g" \ + sed -e "s:\(\$MAKE\):\1 CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getCXX)" LINK="$(tc-getCXX)":g" \ -i || die "sed test compilers failed" fi |