diff options
author | 2008-02-10 14:47:14 +0000 | |
---|---|---|
committer | 2008-02-10 14:47:14 +0000 | |
commit | e55f27f01e9f5441b0d59efc4d61b1ab79cb3017 (patch) | |
tree | 9830e94b3fa6722766927ee13bef320f7b0d98eb /eclass/gnome2.eclass | |
parent | stable on ppc wrt bug #208313 (diff) | |
download | historical-e55f27f01e9f5441b0d59efc4d61b1ab79cb3017.tar.gz historical-e55f27f01e9f5441b0d59efc4d61b1ab79cb3017.tar.bz2 historical-e55f27f01e9f5441b0d59efc4d61b1ab79cb3017.zip |
fixing quoting issues pointed out by maekke
Diffstat (limited to 'eclass/gnome2.eclass')
-rw-r--r-- | eclass/gnome2.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index 4c68f1155a0e..f720b985d0c8 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.82 2007/02/23 15:20:57 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.83 2008/02/10 14:47:14 eva Exp $ # # gnome2.eclass @@ -37,7 +37,7 @@ fi gnome2_src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Prevent scrollkeeper access violations gnome2_omf_fix @@ -82,7 +82,7 @@ gnome2_src_install() { if [[ -z "${USE_EINSTALL}" || "${USE_EINSTALL}" = "0" ]]; then debug-print "Installing with 'make install'" - make DESTDIR=${D} "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" + make DESTDIR="${D}" "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" install || die "install failed" else debug-print "Installing with 'einstall'" einstall "scrollkeeper_localstate_dir=${D}${sk_tmp_dir} " "$@" || die "einstall failed" |