diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2008-01-22 23:26:46 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2008-01-22 23:26:46 +0000 |
commit | 3504b2ea53e4e129d00b852f72e5d5337beec702 (patch) | |
tree | bc38a2966c6c09eeba7fc4ab82c7464933ed2ae0 /eclass/java-ant-2.eclass | |
parent | Version bump. Drop ia64, x86 keywords due to new deps. (diff) | |
download | historical-3504b2ea53e4e129d00b852f72e5d5337beec702.tar.gz historical-3504b2ea53e4e129d00b852f72e5d5337beec702.tar.bz2 historical-3504b2ea53e4e129d00b852f72e5d5337beec702.zip |
Fix eval for classpath rewrite as it was missing the optional output rediction.
Diffstat (limited to 'eclass/java-ant-2.eclass')
-rw-r--r-- | eclass/java-ant-2.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/java-ant-2.eclass b/eclass/java-ant-2.eclass index 9c0071f1ea1d..1f22797ce333 100644 --- a/eclass/java-ant-2.eclass +++ b/eclass/java-ant-2.eclass @@ -14,7 +14,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-ant-2.eclass,v 1.26 2008/01/22 21:57:03 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-ant-2.eclass,v 1.27 2008/01/22 23:26:46 betelgeuse Exp $ inherit java-utils-2 @@ -264,7 +264,7 @@ java-ant_bsfix_files() { -a nowarn -v yes ${output} || _bsfix_die "xml-rewrite2 failed: ${file}" if [[ ${JAVA_ANT_REWRITE_CLASSPATH} ]]; then - eval echo "Adding gentoo.classpath to javac tasks" + eval echo "Adding gentoo.classpath to javac tasks" ${output} eval xml-rewrite-2.py ${files} \ -c -e javac -e xjavac -a classpath -v \ '\${gentoo.classpath}' \ |