diff options
author | 2009-07-31 06:47:10 +0000 | |
---|---|---|
committer | 2009-07-31 06:47:10 +0000 | |
commit | 56cae24d70c16d0be292361e26b385fed2b5b050 (patch) | |
tree | ba2789cdde0d1251b1c270a0de3bbfc4462b5734 /sys-power/iasl/iasl-20090521.ebuild | |
parent | add now released GNU Emacs 23 to the virtual (diff) | |
download | gentoo-2-56cae24d70c16d0be292361e26b385fed2b5b050.tar.gz gentoo-2-56cae24d70c16d0be292361e26b385fed2b5b050.tar.bz2 gentoo-2-56cae24d70c16d0be292361e26b385fed2b5b050.zip |
Bug #278730.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-power/iasl/iasl-20090521.ebuild')
-rw-r--r-- | sys-power/iasl/iasl-20090521.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys-power/iasl/iasl-20090521.ebuild b/sys-power/iasl/iasl-20090521.ebuild index 689ff0b9aae9..bd875ff4e0ae 100644 --- a/sys-power/iasl/iasl-20090521.ebuild +++ b/sys-power/iasl/iasl-20090521.ebuild @@ -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/sys-power/iasl/iasl-20090521.ebuild,v 1.1 2009/05/26 02:07:59 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20090521.ebuild,v 1.2 2009/07/31 06:47:10 robbat2 Exp $ inherit toolchain-funcs flag-o-matic eutils @@ -83,15 +83,15 @@ src_install() { dobin "${T}"/${bin} done dodoc README changes.txt - if hasq test $FEATURES ; then + if use test ; then + tb="${T}"/testresults.tar.bz2 export ASLTSDIR="$(<"${T}"/asltdir)" - cd "${ASLTSDIR}"/tmp/RESULTS || die "cd ${ASLTSDIR}/tmp/RESULTS failed" ebegin "Creating Test Tarball" - tar -cjf testresults.tar.bz2 * || die "tar failed" + tar -cjf "${tb}" -C "${ASLTSDIR}"/tmp/RESULTS . || die "tar failed" eend $? dodir /usr/share/${PF} insinto /usr/share/${PF} - doins testresults.tar.bz2 || die "doins testresults.tar.bz2 failed" + doins ${tb} || die "doins testresults.tar.bz2 failed" fi } |