Makefile.in (taz): Use ";" not ";;".

This commit is contained in:
Ken Raeburn 1995-10-26 09:47:14 +00:00
parent 6bd9ffdb07
commit 65f1be0633
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Thu Oct 26 05:45:10 1995 Ken Raeburn <raeburn@kr-pc.cygnus.com>
* Makefile.in (taz): Use ";" instead of ";;".
Wed Oct 25 15:18:24 1995 Per Bothner <bothner@kalessin.cygnus.com>
* Makefile.in (taz): Grep for '^diststuff:' or '^info:' in

View File

@ -1161,9 +1161,9 @@ taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
for d in $$dirs ; do \
if [ -d $$d ]; then \
if grep '^diststuff:' $$d/Makefile >/dev/null ; then \
(cd $$d ; $(MAKE) diststuff ) || exit 1 ;; \
(cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
elif grep '^info:' $$d/Makefile >/dev/null ; then \
(cd $$d ; $(MAKE) info ) || exit 1 ;; \
(cd $$d ; $(MAKE) info ) || exit 1 ; \
fi ; \
if [ -d $$d/proto-$$d.dir ]; then \
ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \