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 | 72f619514f8d3667feb2ad61f2e154da6ad88499 (patch) | |
tree | 58192e272a28705afb6dca3eab9d5ef7f7006d0f /eclass/ant-tasks.eclass | |
parent | Stable on alpha, bug #257682 (diff) | |
download | gentoo-2-72f619514f8d3667feb2ad61f2e154da6ad88499.tar.gz gentoo-2-72f619514f8d3667feb2ad61f2e154da6ad88499.tar.bz2 gentoo-2-72f619514f8d3667feb2ad61f2e154da6ad88499.zip |
Add missing quotes reported by Markus Meier <maekke@gentoo.org> in bug #258140.
Diffstat (limited to 'eclass/ant-tasks.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 |