diff options
author | Mike Gardiner <obz@gentoo.org> | 2004-07-23 13:10:02 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2004-07-23 13:10:02 +0000 |
commit | f4346c9520ec965c8abc713a006f72828a651549 (patch) | |
tree | 70b7ad564a45dc4db8caa69ef597d4e874719ecd /eclass/gst-plugins.eclass | |
parent | Moving to gnustep-apps/gnumail (diff) | |
download | historical-f4346c9520ec965c8abc713a006f72828a651549.tar.gz historical-f4346c9520ec965c8abc713a006f72828a651549.tar.bz2 historical-f4346c9520ec965c8abc713a006f72828a651549.zip |
Fixed PVP to be an array using () instead of "". Apologies.
Diffstat (limited to 'eclass/gst-plugins.eclass')
-rw-r--r-- | eclass/gst-plugins.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gst-plugins.eclass b/eclass/gst-plugins.eclass index 13b71bca2d5d..dc816bfa7dea 100644 --- a/eclass/gst-plugins.eclass +++ b/eclass/gst-plugins.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/gst-plugins.eclass,v 1.16 2004/07/23 05:25:28 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins.eclass,v 1.17 2004/07/23 13:10:02 obz Exp $ # Author : foser <foser@gentoo.org> @@ -24,7 +24,7 @@ inherit libtool debug ### # Create a major/minor combo for our SLOT and executables suffix -PVP="${PV//[-\._]/ }" +PVP=(${PV//[-\._]/ }) PV_MAJ_MIN=${PVP[0]}.${PVP[1]} MY_P=gst-plugins-${PV} |