Commit 88622e34 by Doug Evans

(compare, compare3, gnucompare, gnucompare3): Add missing "'s.

From-SVN: r7138
parent 8e10b365
...@@ -2117,7 +2117,7 @@ compare: force ...@@ -2117,7 +2117,7 @@ compare: force
&& (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \ && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
done done
for dir in tmp-foo $(SUBDIRS); do \ 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 \ for file in $$dir/*.o; do \
tail +16c ./$$file > tmp-foo1; \ tail +16c ./$$file > tmp-foo1; \
tail +16c stage2/$$file > tmp-foo2 2>/dev/null \ tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
...@@ -2135,7 +2135,7 @@ compare3: force ...@@ -2135,7 +2135,7 @@ compare3: force
&& (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \ && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
done done
for dir in tmp-foo $(SUBDIRS); do \ 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 \ for file in $$dir/*.o; do \
tail +16c ./$$file > tmp-foo1; \ tail +16c ./$$file > tmp-foo1; \
tail +16c stage3/$$file > tmp-foo2 2>/dev/null \ tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
...@@ -2154,7 +2154,7 @@ gnucompare: force ...@@ -2154,7 +2154,7 @@ gnucompare: force
cmp --ignore-initial=16 $$file stage2/$$file || true ; \ cmp --ignore-initial=16 $$file stage2/$$file || true ; \
done done
for dir in tmp-foo $(SUBDIRS); do \ 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 \ for file in $$dir/*.o; do \
cmp --ignore-initial=16 $$file stage2/$$file || true ; \ cmp --ignore-initial=16 $$file stage2/$$file || true ; \
done \ done \
...@@ -2167,7 +2167,7 @@ gnucompare3: force ...@@ -2167,7 +2167,7 @@ gnucompare3: force
cmp --ignore-initial=16 $$file stage3/$$file || true ; \ cmp --ignore-initial=16 $$file stage3/$$file || true ; \
done done
for dir in tmp-foo $(SUBDIRS); do \ 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 \ for file in $$dir/*.o; do \
cmp --ignore-initial=16 $$file stage3/$$file || true ; \ cmp --ignore-initial=16 $$file stage3/$$file || true ; \
done \ done \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment