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 | 3ae0c29d8ffe755cba1dff1c61bd9f43c6d53dab (patch) | |
tree | a1d2e5c15f5498856feadd91682a9d93c0adc66e /eclass | |
parent | Add missing hal use flag (diff) | |
download | historical-3ae0c29d8ffe755cba1dff1c61bd9f43c6d53dab.tar.gz historical-3ae0c29d8ffe755cba1dff1c61bd9f43c6d53dab.tar.bz2 historical-3ae0c29d8ffe755cba1dff1c61bd9f43c6d53dab.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 |