diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-20 02:39:44 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-20 02:39:44 +0000 |
commit | 98f5885736c425a5b7208acc30273467a692f85c (patch) | |
tree | e0c283bd542851aa2244f7b733bc496b24a85698 /eclass | |
parent | Add missing hal use flag (diff) | |
download | gentoo-2-98f5885736c425a5b7208acc30273467a692f85c.tar.gz gentoo-2-98f5885736c425a5b7208acc30273467a692f85c.tar.bz2 gentoo-2-98f5885736c425a5b7208acc30273467a692f85c.zip |
Just call unpack once for each.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xmms-plugin.eclass | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/eclass/xmms-plugin.eclass b/eclass/xmms-plugin.eclass index 85d054cd5932..f3b060d98319 100644 --- a/eclass/xmms-plugin.eclass +++ b/eclass/xmms-plugin.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xmms-plugin.eclass,v 1.5 2004/10/20 01:45:43 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xmms-plugin.eclass,v 1.6 2004/10/20 02:39:44 eradicator Exp $ # # Jeremy Huddleston <eradicator@gentoo.org> # @@ -100,15 +100,17 @@ xmms-plugin_src_unpack() { if do_xmms; then cd ${XMMS_WORKDIR} for f in ${XMMS_SRC_URI} ${BASE_SRC_URI}; do - unpack ${f} + XMMS_A="${XMMS_A} `basename ${f}`" done + unpack ${XMMS_A} fi if do_bmp; then cd ${BMP_WORKDIR} for f in ${BMP_SRC_URI} ${BASE_SRC_URI}; do - unpack ${f} + BMP_A="${BMP_A} `basename ${f}`" done + unpack ${BMP_A} fi else if do_xmms; then |