* Makefile.in (refcard.dvi): Rewrite to avoid problems with empty

`test` expressions on bash.  Problem reported by Colin Walters.
This commit is contained in:
Andrew Cagney 2001-07-14 16:14:10 +00:00
parent e7d10af411
commit dfa249fb26
2 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2001-07-06 Andrew Cagney <ac131313@redhat.com>
* Makefile.in (refcard.dvi): Rewrite to avoid problems with empty
`test` expressions on bash. Problem reported by Colin Walters.
2001-07-04 Andrew Cagney <ac131313@redhat.com>
* gdbint.texinfo (User Interface): Update ui-out documentation to

View File

@ -200,14 +200,12 @@ maintainer-clean realclean: distclean
# GDB QUICK REFERENCE (dvi output)
refcard.dvi : refcard.tex $(REFEDITS)
if [ -z "$(REFEDITS)" ]; then \
cp $(srcdir)/refcard.tex sedref.tex ; \
else \
echo > tmp.sed ; \
for f in $(REFEDITS) ; do \
cat $(srcdir)/$$f >>tmp.sed ; done ; \
sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex ; \
fi
echo > tmp.sed
for f in x $(REFEDITS) ; do \
test x$$f = xx && continue ; \
cat $(srcdir)/$$f >>tmp.sed ; \
done
sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex
$(SET_TEXINPUTS) $(TEX) sedref.tex
mv sedref.dvi refcard.dvi
rm -f sedref.log sedref.tex tmp.sed