(*compare*): Add missing semicolons.
authorRichard Kenner <kenner@gcc.gnu.org>
Mon, 25 Apr 1994 19:04:42 +0000 (15:04 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 25 Apr 1994 19:04:42 +0000 (15:04 -0400)
From-SVN: r7155

gcc/Makefile.in

index c9e5740793562815d661d33956e8eb5404354a1a..1db18ee09ce0e437c9c6670478f8d835a8f5f630 100644 (file)
@@ -2128,8 +2128,8 @@ compare: force
              tail +16c ./$$file > tmp-foo1; \
              tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
                && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
-           done \
-         fi \
+           done; \
+         fi; \
        done
        -rm -f tmp-foo*
 
@@ -2146,8 +2146,8 @@ compare3: force
              tail +16c ./$$file > tmp-foo1; \
              tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
                && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
-           done \
-         fi \
+           done; \
+         fi; \
        done
        -rm -f tmp-foo*
 
@@ -2163,8 +2163,8 @@ gnucompare: force
          if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
            for file in $$dir/*.o; do \
              cmp --ignore-initial=16 $$file stage2/$$file || true ; \
-           done \
-         fi \
+           done; \
+         fi; \
        done
 
 # Similar, but compare with stage3 directory
@@ -2176,8 +2176,8 @@ gnucompare3: force
          if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
            for file in $$dir/*.o; do \
              cmp --ignore-initial=16 $$file stage3/$$file || true ; \
-           done \
-         fi \
+           done; \
+         fi; \
        done
 
 # Copy the object files from a particular stage into a subdirectory.