diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-23 22:12:26 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-23 22:12:26 +0000 |
commit | 8a85e038e17d4e4ada710cce26f1681bfe3c1521 (patch) | |
tree | 8edea9af56a688da805f76a20bde7567314b687f /eclass/jakarta-commons.eclass | |
parent | no longer stable on x86 nor ppc (diff) | |
download | historical-8a85e038e17d4e4ada710cce26f1681bfe3c1521.tar.gz historical-8a85e038e17d4e4ada710cce26f1681bfe3c1521.tar.bz2 historical-8a85e038e17d4e4ada710cce26f1681bfe3c1521.zip |
fix use invocation
Diffstat (limited to 'eclass/jakarta-commons.eclass')
-rw-r--r-- | eclass/jakarta-commons.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/jakarta-commons.eclass b/eclass/jakarta-commons.eclass index 53d6666dadb5..1958dc0d8ef1 100644 --- a/eclass/jakarta-commons.eclass +++ b/eclass/jakarta-commons.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/jakarta-commons.eclass,v 1.12 2004/05/17 00:02:47 zx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/jakarta-commons.eclass,v 1.13 2004/06/23 22:07:11 mr_bones_ Exp $ inherit base java-pkg ECLASS=jakarta-commons @@ -54,7 +54,7 @@ jakarta-commons_src_compile() { ;; maketest) debug-print-section maketest - if [ -n "`use junit`" ]; then + if use junit ; then if [ -n $(echo "$target" | grep "test") ]; then ANT_OPTS=${myconf} ant test || die "Building Testing Classes Failed" else |