]> sourceware.org Git - automake.git/commitdiff
* m4/init.m4: Fixed typo when invoking SHELL.
authorTom Tromey <tromey@redhat.com>
Fri, 26 Mar 1999 22:54:55 +0000 (22:54 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 26 Mar 1999 22:54:55 +0000 (22:54 +0000)
ChangeLog
m4/init.m4

index 21f4b3ddbb90fe26a6fbaa055c45f28cd6e391e4..7bd87fe93543985b3731256c3a1b2fec0475efa4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1999-03-26  Tom Tromey  <tromey@cygnus.com>
 
+       * m4/init.m4: Fixed typo when invoking SHELL.
+
        * automake.in (lang_yacc_finish): Always use `.h' as suffix for
        yacc header file.  From Ralf Corsepius.
 
index 65fa1535e13a73b1a6e07f26b19a07f315360e52..45b621747f0e029816683e38462f15685b15bb8f 100644 (file)
@@ -38,7 +38,7 @@ dnl we can find it.  If we can't find a tar, it doesn't really matter.
 AC_CHECK_PROGS(TAR, gnutar gtar tar)
 AMTARFLAGS=
 if test -n "$TAR"; then
-  if $(SHELL) -c "$TAR --version" > /dev/null 2>&1; then
+  if $SHELL -c "$TAR --version" > /dev/null 2>&1; then
     dnl We have GNU tar.
     AMTARFLAGS=o
   fi
This page took 0.028906 seconds and 5 git commands to generate.