diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-11-26 11:37:41 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-11-26 11:37:41 -0500 |
commit | 63a014a0832cc9c7b630ad105a2bad5ea2c4d660 (patch) | |
tree | 4c5494754c1d4c9512340faff7bed056ae0929ea | |
parent | bbfeb419ef58070ec80917e8aba746599c5bdbcc (diff) | |
download | gcc-63a014a0832cc9c7b630ad105a2bad5ea2c4d660.zip gcc-63a014a0832cc9c7b630ad105a2bad5ea2c4d660.tar.gz gcc-63a014a0832cc9c7b630ad105a2bad5ea2c4d660.tar.bz2 |
(compare*): Add "|| true" to avoid spurious failure messages from some
versions of make.
From-SVN: r10588
-rw-r--r-- | gcc/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 2ebdbac..4026b7a 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2385,14 +2385,14 @@ compare: force for file in *$(objext); do \ tail +16c ./$$file > tmp-foo1; \ tail +16c stage2/$$file > tmp-foo2 2>/dev/null \ - && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \ + && (cmp tmp-foo1 tmp-foo2 || echo $$file differs) || true; \ done for dir in tmp-foo $(SUBDIRS); do \ if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \ for file in $$dir/*$(objext); do \ tail +16c ./$$file > tmp-foo1; \ tail +16c stage2/$$file > tmp-foo2 2>/dev/null \ - && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \ + && (cmp tmp-foo1 tmp-foo2 || echo $$file differs) || true; \ done; \ fi; \ done @@ -2403,14 +2403,14 @@ compare3: force for file in *$(objext); do \ tail +16c ./$$file > tmp-foo1; \ tail +16c stage3/$$file > tmp-foo2 2>/dev/null \ - && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \ + && (cmp tmp-foo1 tmp-foo2 || echo $$file differs) || true; \ done for dir in tmp-foo $(SUBDIRS); do \ if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \ for file in $$dir/*$(objext); do \ tail +16c ./$$file > tmp-foo1; \ tail +16c stage3/$$file > tmp-foo2 2>/dev/null \ - && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \ + && (cmp tmp-foo1 tmp-foo2 || echo $$file differs) || true; \ done; \ fi; \ done |