aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1994-04-22 16:22:14 +0000
committerDoug Evans <dje@gnu.org>1994-04-22 16:22:14 +0000
commit88622e34a3ab403ecc6cca6cde6c8bb300191247 (patch)
treec2489bc16befad12940c8905064ab56ba74d0f03 /gcc
parent8e10b365d166155d4b453f56934519c4ca054441 (diff)
downloadgcc-88622e34a3ab403ecc6cca6cde6c8bb300191247.zip
gcc-88622e34a3ab403ecc6cca6cde6c8bb300191247.tar.gz
gcc-88622e34a3ab403ecc6cca6cde6c8bb300191247.tar.bz2
(compare, compare3, gnucompare, gnucompare3): Add missing "'s.
From-SVN: r7138
Diffstat (limited to 'gcc')
-rw-r--r--gcc/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index c2996de..867af4d 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -2117,7 +2117,7 @@ compare: force
&& (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
done
for dir in tmp-foo $(SUBDIRS); do \
- if [ `echo $$dir/*.o` != "$$dir/*.o" ] ; then \
+ if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
for file in $$dir/*.o; do \
tail +16c ./$$file > tmp-foo1; \
tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
@@ -2135,7 +2135,7 @@ compare3: force
&& (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
done
for dir in tmp-foo $(SUBDIRS); do \
- if [ `echo $$dir/*.o` != "$$dir/*.o" ] ; then \
+ if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
for file in $$dir/*.o; do \
tail +16c ./$$file > tmp-foo1; \
tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
@@ -2154,7 +2154,7 @@ gnucompare: force
cmp --ignore-initial=16 $$file stage2/$$file || true ; \
done
for dir in tmp-foo $(SUBDIRS); do \
- if [ `echo $$dir/*.o` != "$$dir/*.o" ] ; then \
+ if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
for file in $$dir/*.o; do \
cmp --ignore-initial=16 $$file stage2/$$file || true ; \
done \
@@ -2167,7 +2167,7 @@ gnucompare3: force
cmp --ignore-initial=16 $$file stage3/$$file || true ; \
done
for dir in tmp-foo $(SUBDIRS); do \
- if [ `echo $$dir/*.o` != "$$dir/*.o" ] ; then \
+ if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
for file in $$dir/*.o; do \
cmp --ignore-initial=16 $$file stage3/$$file || true ; \
done \