Remove quotes from arround for loop arg.

This commit is contained in:
Andrew Cagney 2000-05-24 02:18:18 +00:00
parent 3463c3fbbb
commit c741b251b9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue May 23 22:57:41 2000 Andrew Cagney <cagney@b1.cygnus.com>
* Makefile.in (refcard.dvi): Remove quotes around REFEDITS in for
loop.
2000-05-19 Jimmy Guo <guo@cup.hp.com>
* configure: Regenerate.

View File

@ -189,7 +189,7 @@ refcard.dvi : refcard.tex $(REFEDITS)
cp $(srcdir)/refcard.tex sedref.tex ; \
else \
echo > tmp.sed ; \
for f in "$(REFEDITS)" ; do \
for f in $(REFEDITS) ; do \
cat $(srcdir)/$$f >>tmp.sed ; done ; \
sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex ; \
fi