summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gardiner <obz@gentoo.org>2004-07-23 13:10:02 +0000
committerMike Gardiner <obz@gentoo.org>2004-07-23 13:10:02 +0000
commitf4346c9520ec965c8abc713a006f72828a651549 (patch)
tree70b7ad564a45dc4db8caa69ef597d4e874719ecd /eclass/gtk-engines.eclass
parentMoving to gnustep-apps/gnumail (diff)
downloadhistorical-f4346c9520ec965c8abc713a006f72828a651549.tar.gz
historical-f4346c9520ec965c8abc713a006f72828a651549.tar.bz2
historical-f4346c9520ec965c8abc713a006f72828a651549.zip
Fixed PVP to be an array using () instead of "". Apologies.
Diffstat (limited to 'eclass/gtk-engines.eclass')
-rw-r--r--eclass/gtk-engines.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gtk-engines.eclass b/eclass/gtk-engines.eclass
index 68384c0f66e9..cafa59ac7ae2 100644
--- a/eclass/gtk-engines.eclass
+++ b/eclass/gtk-engines.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/gtk-engines.eclass,v 1.28 2004/07/23 05:34:13 obz Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-engines.eclass,v 1.29 2004/07/23 13:10:02 obz Exp $
#
# The gtk-engines eclass is inherited by all gtk-engines-* ebuilds.
#
@@ -132,12 +132,12 @@ then
elif [ "X${ENGINE}" = "Xcrux" ]
then
- PVP="${PV//[-\._]/ }"
+ PVP=(${PV//[-\._]/ })
SRC_URI="mirror://gnome/sources/${MY_PN}/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2"
elif [ "X${MY_PN}" = "Xgtk-engines" ] && [ "$SLOT" -eq "2" ]
then
- PVP="${PV//[-\._]/ }"
+ PVP=(${PV//[-\._]/ })
SRC_URI="mirror://gnome/sources/${MY_PN}/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2"
else