diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-01 21:50:44 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-01 21:50:44 +0000 |
commit | 027a29288e9c4bfd3fabeb5fc9640f4965588b1d (patch) | |
tree | d36fa8ebe5a0ba1c455b3f15ae6f3af56a8d695e /eclass/nsplugins.eclass | |
parent | Fix quoting issues, patch by maekke -- bug 258211 (diff) | |
download | historical-027a29288e9c4bfd3fabeb5fc9640f4965588b1d.tar.gz historical-027a29288e9c4bfd3fabeb5fc9640f4965588b1d.tar.bz2 historical-027a29288e9c4bfd3fabeb5fc9640f4965588b1d.zip |
Fix quoting issues, patch by maekke -- bug 258217
Diffstat (limited to 'eclass/nsplugins.eclass')
-rw-r--r-- | eclass/nsplugins.eclass | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/eclass/nsplugins.eclass b/eclass/nsplugins.eclass index ff082fbfd179..0fff026e2962 100644 --- a/eclass/nsplugins.eclass +++ b/eclass/nsplugins.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.22 2005/08/04 21:55:06 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/nsplugins.eclass,v 1.23 2009/05/01 21:50:44 nirbheek Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -20,8 +20,8 @@ src_mv_plugins() { # Move plugins dir. We use keepdir so that it might not be unmerged # by mistake ... keepdir /usr/$(get_libdir)/${PLUGINS_DIR} - cp -a ${D}/$1/* ${D}/usr/$(get_libdir)/${PLUGINS_DIR} - rm -rf ${D}/$1 + cp -a "${D}"/$1/* "${D}"/usr/$(get_libdir)/${PLUGINS_DIR} + rm -rf "${D}"/$1 dosym /usr/$(get_libdir)/${PLUGINS_DIR} $1 } @@ -31,11 +31,11 @@ src_mv_plugins() { pkg_mv_plugins() { # Move old plugins dir - if [ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ] + if [[ -d "${ROOT}/$1" -a ! -L "${ROOT}/$1" ]] then - mkdir -p ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} - cp -a ${ROOT}/$1/* ${ROOT}/usr/$(get_libdir)/${PLUGINS_DIR} - rm -rf ${ROOT}/$1 + mkdir -p "${ROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} + cp -a "${ROOT}"/$1/* "${ROOT}"/usr/$(get_libdir)/${PLUGINS_DIR} + rm -rf "${ROOT}"/$1 fi } |