summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorJohn Keiser <shalom@gnu.org>2000-06-24 21:30:08 +0000
committerJohn Keiser <shalom@gnu.org>2000-06-24 21:30:08 +0000
commit091d4c273c3ee2b9f3e8e634a098998caf386d81 (patch)
treef770b37bcd2a1035683d9d7c6e7fc84b9865db7a /acinclude.m4
parent694c2d54feb073dda7b8af56bef49f514da1d894 (diff)
downloadclasspath-091d4c273c3ee2b9f3e8e634a098998caf386d81.tar.gz
Was outputting both yes and no when Japhar classes were not found.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 3 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index f1bfe0acc..be1f3412a 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -64,10 +64,12 @@ AC_DEFUN(CLASSPATH_INTERNAL_CHECK_JAPHAR,
JAPHAR_CLASSLIB=$_t_datadir/rt.jar
elif test -e $_t_datadir/rt.zip; then
JAPHAR_CLASSLIB=$_t_datadir/rt.zip
+ fi
+ if test $JAPHAR_CLASSLIB ; then
+ AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
- AC_MSG_RESULT(yes)
AC_SUBST(JAPHAR_CLASSLIB)
])