diff options
author | Serkan Kaba <serkan@gentoo.org> | 2009-02-08 16:12:16 +0000 |
---|---|---|
committer | Serkan Kaba <serkan@gentoo.org> | 2009-02-08 16:12:16 +0000 |
commit | 86b8265fa83269d928f474607c32c0752e0bc914 (patch) | |
tree | 5ee0010370883551a6ad4010cece2443552f317c /eclass | |
parent | Stable on alpha, bug #257682 (diff) | |
download | historical-86b8265fa83269d928f474607c32c0752e0bc914.tar.gz historical-86b8265fa83269d928f474607c32c0752e0bc914.tar.bz2 historical-86b8265fa83269d928f474607c32c0752e0bc914.zip |
Add missing quotes reported by Markus Meier <maekke@gentoo.org> in bug #258140.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ant-tasks.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ant-tasks.eclass b/eclass/ant-tasks.eclass index 060bf22fb74b..41e273e24c27 100644 --- a/eclass/ant-tasks.eclass +++ b/eclass/ant-tasks.eclass @@ -3,7 +3,7 @@ # Copyright 2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later # Author Vlastimil Babka <caster@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/eclass/ant-tasks.eclass,v 1.7 2008/12/25 00:39:03 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ant-tasks.eclass,v 1.8 2009/02/08 16:12:16 serkan Exp $ # we set ant-core dep ourselves, restricted JAVA_ANT_DISABLE_ANT_CORE_DEP=true @@ -133,7 +133,7 @@ ant-tasks_src_unpack() { cd "${S}" # replace build.xml with our modified for split building - mv -f ${WORKDIR}/build.xml . + mv -f "${WORKDIR}"/build.xml . cd lib # remove bundled xerces |