+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.
## 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
## 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