diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-01 21:42:38 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-01 21:42:38 +0000 |
commit | ee1b48ad473b33bfa31ab28b153561cbe4971791 (patch) | |
tree | b1a3ad161a17a100e714f2abb6697167827f392b /eclass | |
parent | Add dev-lang/ruby as a build-time DEPEND, as autogen.sh (line 9 in SVN rev 21... (diff) | |
download | historical-ee1b48ad473b33bfa31ab28b153561cbe4971791.tar.gz historical-ee1b48ad473b33bfa31ab28b153561cbe4971791.tar.bz2 historical-ee1b48ad473b33bfa31ab28b153561cbe4971791.zip |
Fix quoting issues, patch by maekke -- bug 258211
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mozilla-launcher.eclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/mozilla-launcher.eclass b/eclass/mozilla-launcher.eclass index 71f3e1804389..bcafc9bd9c91 100644 --- a/eclass/mozilla-launcher.eclass +++ b/eclass/mozilla-launcher.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla-launcher.eclass,v 1.23 2009/02/04 10:54:09 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozilla-launcher.eclass,v 1.24 2009/05/01 21:42:38 nirbheek Exp $ inherit nsplugins multilib @@ -37,7 +37,7 @@ fi # update_mozilla_launcher_symlinks() { local f browsers="mozilla firefox thunderbird sunbird seamonkey" - cd ${ROOT}/usr/bin + cd "${ROOT}"/usr/bin # Remove launcher symlinks that no longer apply @@ -82,7 +82,7 @@ install_mozilla_launcher_stub() { dodir /usr/bin if [[ ${PN: -4} == "-bin" ]] || ! use moznopango; then - cat <<EOF >${D}/usr/bin/${name} + cat <<EOF >"${D}"/usr/bin/${name} #!/bin/sh # # Stub script to run mozilla-launcher. We used to use a symlink here @@ -96,7 +96,7 @@ ${xulparams} exec /usr/libexec/mozilla-launcher "\$@" EOF else - cat <<EOF >${D}/usr/bin/${name} + cat <<EOF >"${D}"/usr/bin/${name} #!/bin/sh # # Stub script to run mozilla-launcher. We used to use a symlink here @@ -111,7 +111,7 @@ ${xulparams} exec /usr/libexec/mozilla-launcher "\$@" EOF fi - chmod 0755 ${D}/usr/bin/${name} + chmod 0755 "${D}"/usr/bin/${name} } warn_mozilla_launcher_stub() { |