fixlet
authorTom Tromey <tromey@redhat.com>
Sun, 22 Jun 1997 20:02:54 +0000 (20:02 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 22 Jun 1997 20:02:54 +0000 (20:02 +0000)
ChangeLog
lib/am/texinfos.am
texinfos.am

index a3edfb3..3292333 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jun 22 14:01:59 1997  Tom Tromey  <tromey@cygnus.com>
+
+       * texinfos.am: Use ||, not ;.
+
 Tue Jun 10 11:04:16 1997  Tom Tromey  <tromey@cygnus.com>
 
        * m4/cygwin.m4: Examine output of compiler to see if .exe needed.
index 8998cee..c19e376 100644 (file)
@@ -124,7 +124,9 @@ NOTCYGNUS     d=$(srcdir); \
 ## think instead it should create a new dir file for you.  This bug
 ## causes the `make distcheck' target to fail reliably.
            echo " install-info --info-dir=$(infodir) $(infodir)/$$file";\
-           install-info --info-dir=$(infodir) $(infodir)/$$file; :;\
+## Use `|| :' here because Sun make passes -e to sh; if install-info
+## fails then we'd fail if we used `;'.
+           install-info --info-dir=$(infodir) $(infodir)/$$file || :;\
          done; \
        else : ; fi
 
index 8998cee..c19e376 100644 (file)
@@ -124,7 +124,9 @@ NOTCYGNUS     d=$(srcdir); \
 ## think instead it should create a new dir file for you.  This bug
 ## causes the `make distcheck' target to fail reliably.
            echo " install-info --info-dir=$(infodir) $(infodir)/$$file";\
-           install-info --info-dir=$(infodir) $(infodir)/$$file; :;\
+## Use `|| :' here because Sun make passes -e to sh; if install-info
+## fails then we'd fail if we used `;'.
+           install-info --info-dir=$(infodir) $(infodir)/$$file || :;\
          done; \
        else : ; fi