diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-01-05 14:18:52 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-01-05 14:18:52 +0000 |
commit | 488725339883014941b75f1449fdc0ff2a188dfd (patch) | |
tree | ed695011ed7055a8455635ca95c30366b179be01 /app-cdr | |
parent | Let cyana run forever, thanks xarthisius for the patch (diff) | |
download | gentoo-2-488725339883014941b75f1449fdc0ff2a188dfd.tar.gz gentoo-2-488725339883014941b75f1449fdc0ff2a188dfd.tar.bz2 gentoo-2-488725339883014941b75f1449fdc0ff2a188dfd.zip |
Fix needless double-unpacking of tests.
(Portage version: 2.2.0_alpha12_p8/cvs/Linux x86_64)
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/mirage2iso/ChangeLog | 5 | ||||
-rw-r--r-- | app-cdr/mirage2iso/mirage2iso-0.3.1.ebuild | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/app-cdr/mirage2iso/ChangeLog b/app-cdr/mirage2iso/ChangeLog index db03e37e68e7..a5f6662e6381 100644 --- a/app-cdr/mirage2iso/ChangeLog +++ b/app-cdr/mirage2iso/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-cdr/mirage2iso # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/mirage2iso/ChangeLog,v 1.2 2011/01/05 14:07:52 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/mirage2iso/ChangeLog,v 1.3 2011/01/05 14:18:52 mgorny Exp $ + + 05 Jan 2011; Michał Górny <mgorny@gentoo.org> mirage2iso-0.3.1.ebuild: + Fix needless double-unpacking of tests. 05 Jan 2011; Michał Górny <mgorny@gentoo.org> mirage2iso-0.3.1.ebuild: EAPI bump. diff --git a/app-cdr/mirage2iso/mirage2iso-0.3.1.ebuild b/app-cdr/mirage2iso/mirage2iso-0.3.1.ebuild index 1ab18b7b491d..b4118c3bb18a 100644 --- a/app-cdr/mirage2iso/mirage2iso-0.3.1.ebuild +++ b/app-cdr/mirage2iso/mirage2iso-0.3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/mirage2iso/mirage2iso-0.3.1.ebuild,v 1.3 2011/01/05 14:07:52 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/mirage2iso/mirage2iso-0.3.1.ebuild,v 1.4 2011/01/05 14:18:52 mgorny Exp $ EAPI=3 inherit autotools-utils versionator @@ -36,8 +36,6 @@ src_configure() { } src_test() { - xz -cd "${DISTDIR}"/${PN}-${TESTS_PV}-tests.tar.xz | \ - tar -x --strip-components 1 || die - + mv "${WORKDIR}"/${PN}-${TESTS_PV}/tests/* tests/ || die autotools-utils_src_test } |