summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2010-08-12 10:48:59 +0000
committerPeter Volkov <pva@gentoo.org>2010-08-12 10:48:59 +0000
commitf1e760649981b638224ae54e818ac5c5e5a56c55 (patch)
tree9240b5f2f3eee01ad94fb2b769f96c3bc2b4cf14 /eclass
parentstable x86, bug 332335 (diff)
downloadhistorical-f1e760649981b638224ae54e818ac5c5e5a56c55.tar.gz
historical-f1e760649981b638224ae54e818ac5c5e5a56c55.tar.bz2
historical-f1e760649981b638224ae54e818ac5c5e5a56c55.zip
Fix quotation.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/gst-plugins10.eclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/gst-plugins10.eclass b/eclass/gst-plugins10.eclass
index d82970ca2528..3107f5229878 100644
--- a/eclass/gst-plugins10.eclass
+++ b/eclass/gst-plugins10.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-plugins10.eclass,v 1.2 2006/01/01 01:14:59 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins10.eclass,v 1.3 2010/08/12 10:48:59 pva Exp $
# Author : foser <foser@gentoo.org>
@@ -47,16 +47,16 @@ SLOT=${PV_MAJ_MIN}
gst-plugins10_find_plugin_dir() {
- if [ ! -d ${S}/ext/${GST_PLUGINS_BUILD_DIR} ]; then
- if [ ! -d ${S}/sys/${GST_PLUGINS_BUILD_DIR} ]; then
+ if [[ ! -d ${S}/ext/${GST_PLUGINS_BUILD_DIR} ]]; then
+ if [[ ! -d ${S}/sys/${GST_PLUGINS_BUILD_DIR} ]]; then
ewarn "No such plugin directory"
die
fi
einfo "Building system plugin ..."
- cd ${S}/sys/${GST_PLUGINS_BUILD_DIR}
+ cd "${S}"/sys/${GST_PLUGINS_BUILD_DIR}
else
einfo "Building external plugin ..."
- cd ${S}/ext/${GST_PLUGINS_BUILD_DIR}
+ cd "${S}"/ext/${GST_PLUGINS_BUILD_DIR}
fi
}