]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* m4/gcj.m4 (AM_PROG_GCJ): Use AC_CHECK_PROGS, not AC_CHECK_PROG.
authorTom Tromey <tromey@redhat.com>
Sun, 11 Apr 1999 10:22:50 +0000 (10:22 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 11 Apr 1999 10:22:50 +0000 (10:22 +0000)
ChangeLog
m4/gcj.m4

index 7074dcc2a2a2cc3df2fbe9cfa8293e3176824065..3edb42af4fa62c93c007e4f2bfb2075df5c52a54 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1999-04-11  Tom Tromey  <tromey@cygnus.com>
 
+       * m4/gcj.m4 (AM_PROG_GCJ): Use AC_CHECK_PROGS, not AC_CHECK_PROG.
+
        Fix for confh.test:
        * automake.in (configure_input_files): New global.
        (scan_configure): Set it.
index f040173d02a31b50535373b211e59ec8462ba285..34677afe2bc8f6dfd5cdfe09b840391fbb11352f 100644 (file)
--- a/m4/gcj.m4
+++ b/m4/gcj.m4
@@ -2,7 +2,7 @@ dnl Check for Java compiler.
 dnl For now we only handle the GNU compiler.
 
 AC_DEFUN(AM_PROG_GCJ,[
-AC_CHECK_PROG(GCJ, gcj)
+AC_CHECK_PROGS(GCJ, gcj, gcj)
 test -z "$GCJ" && AC_MSG_ERROR([no acceptable gcj found in \$PATH])
 if test "x${GCJFLAGS+set}" = xset; then
    GCJFLAGS="-g -O2"