diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-23 22:07:11 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-23 22:07:11 +0000 |
commit | b89f43e35df6a6dbd9d2ba9fb9448fb232008fe5 (patch) | |
tree | 9edd2fa33961af7ce2557953f2a8dc38e8b4a57c /eclass/jakarta-commons.eclass | |
parent | remove net-p2p/teknap irt #38456 (diff) | |
download | gentoo-2-b89f43e35df6a6dbd9d2ba9fb9448fb232008fe5.tar.gz gentoo-2-b89f43e35df6a6dbd9d2ba9fb9448fb232008fe5.tar.bz2 gentoo-2-b89f43e35df6a6dbd9d2ba9fb9448fb232008fe5.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 |