diff options
author | Peter Volkov <pva@gentoo.org> | 2010-08-12 10:48:59 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2010-08-12 10:48:59 +0000 |
commit | 3905e29dcde2ca2ced1b82953a3ccd70f4f6b37d (patch) | |
tree | 2f3e2bf0cf14776a2a0a845c97c73218ff5c920a /eclass/gst-plugins10.eclass | |
parent | stable x86, bug 332335 (diff) | |
download | gentoo-2-3905e29dcde2ca2ced1b82953a3ccd70f4f6b37d.tar.gz gentoo-2-3905e29dcde2ca2ced1b82953a3ccd70f4f6b37d.tar.bz2 gentoo-2-3905e29dcde2ca2ced1b82953a3ccd70f4f6b37d.zip |
Fix quotation.
Diffstat (limited to 'eclass/gst-plugins10.eclass')
-rw-r--r-- | eclass/gst-plugins10.eclass | 10 |
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 } |