]> sourceware.org Git - automake.git/commitdiff
Fixed 'make check' bugs Release-0-25
authorTom Tromey <tromey@redhat.com>
Sun, 10 Dec 1995 22:58:53 +0000 (22:58 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 10 Dec 1995 22:58:53 +0000 (22:58 +0000)
ChangeLog
Makefile.am
Makefile.in
lib/am/Makefile.am

index 73c5bbeb69b5af7dd3355a383c683b1a032aae44..7f92715aa64b42c5875577bca2dea022dc9608e6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 Sun Dec 10 11:59:33 1995  Tom Tromey  <tromey@cambric.colorado.edu>
 
+       * Makefile.am (check-local): Only look at [a-z]*.am.  Fixed sense
+       of 'if' test.
+
        * depend.am (DEP_FILES): Bug fix.
 
        * automake.in (do_one_clean_target): Typo.
index f6ca533ec8e5ccba27531af6f28f52276ad585ae..0b78481ec58c2abe91aa5cbe4a64dcbc931e0ca6 100644 (file)
@@ -29,10 +29,10 @@ ETAGS_ARGS = automake.in --lang=none \
 # These are only really guaranteed to work on my machine.
 check-local: automake
        @PERL@ -c -w automake
-       if grep '^[^#].*true' *.am; then :; else \
+       if grep '^[^#].*true' [a-z]*.am; then   \
          echo "can't use 'true' in GNU Makefile" 1>&2; \
          exit 1;                               \
-       fi
+       else :; fi
        if test -f /usr/local/bin/perl4.036; then \
          /usr/local/bin/perl4.036 -c -w automake; \
        else :; fi
index 761f529a940329c1326c5342ad37e1cd3984065f..7fe35d1d8985647695ab79ac6b61387a85574c15 100644 (file)
@@ -296,10 +296,10 @@ maintainer-clean: distclean maintainer-clean-binSCRIPTS maintainer-clean-vti mai
 # These are only really guaranteed to work on my machine.
 check-local: automake
        @PERL@ -c -w automake
-       if grep '^[^#].*true' *.am; then :; else \
+       if grep '^[^#].*true' [a-z]*.am; then   \
          echo "can't use 'true' in GNU Makefile" 1>&2; \
          exit 1;                               \
-       fi
+       else :; fi
        if test -f /usr/local/bin/perl4.036; then \
          /usr/local/bin/perl4.036 -c -w automake; \
        else :; fi
index f6ca533ec8e5ccba27531af6f28f52276ad585ae..0b78481ec58c2abe91aa5cbe4a64dcbc931e0ca6 100644 (file)
@@ -29,10 +29,10 @@ ETAGS_ARGS = automake.in --lang=none \
 # These are only really guaranteed to work on my machine.
 check-local: automake
        @PERL@ -c -w automake
-       if grep '^[^#].*true' *.am; then :; else \
+       if grep '^[^#].*true' [a-z]*.am; then   \
          echo "can't use 'true' in GNU Makefile" 1>&2; \
          exit 1;                               \
-       fi
+       else :; fi
        if test -f /usr/local/bin/perl4.036; then \
          /usr/local/bin/perl4.036 -c -w automake; \
        else :; fi
This page took 0.088872 seconds and 5 git commands to generate.