aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1995-10-26 09:47:14 +0000
committerKen Raeburn <raeburn@cygnus>1995-10-26 09:47:14 +0000
commit65f1be0633e19288837b77453ab879a1f5d7d7f8 (patch)
treee62e1b2abb213b5d697b1526cc924328ee00d51f
parent6bd9ffdb07b171e665256b7a2b8b0968e724960b (diff)
downloadfsf-binutils-gdb-65f1be0633e19288837b77453ab879a1f5d7d7f8.zip
fsf-binutils-gdb-65f1be0633e19288837b77453ab879a1f5d7d7f8.tar.gz
fsf-binutils-gdb-65f1be0633e19288837b77453ab879a1f5d7d7f8.tar.bz2
Makefile.in (taz): Use ";" not ";;".
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index aaa64ef..242f0d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/Makefile.in b/Makefile.in
index efebc0d..be05ea8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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 ; \