From f1e760649981b638224ae54e818ac5c5e5a56c55 Mon Sep 17 00:00:00 2001 From: Peter Volkov Date: Thu, 12 Aug 2010 10:48:59 +0000 Subject: Fix quotation. --- eclass/gst-plugins10.eclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'eclass/gst-plugins10.eclass') 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 @@ -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 } -- cgit v1.2.3-65-gdbad