Commit 1b07e854 by Joseph Myers Committed by Joseph Myers

re PR other/567 ("make dvi" fails)

ch:
	* Make-lang.in (chill.dvi): Remove bogus dependencies.  Don't cd
	to ch; include both $(srcdir)/ch and $(srcdir) in TEXINPUTS.
	Don't move chill.dvi after creating it.  Fixes PR other/567 and
	PR other/1018.

f:
	* Make-lang.in (f/g77.dvi): Include $(srcdir) in TEXINPUTS.

From-SVN: r42345
parent d30a825a
2001-05-20 Joseph S. Myers <jsm28@cam.ac.uk>
* Make-lang.in (chill.dvi): Remove bogus dependencies. Don't cd
to ch; include both $(srcdir)/ch and $(srcdir) in TEXINPUTS.
Don't move chill.dvi after creating it. Fixes PR other/567 and
PR other/1018.
Fri Feb 23 15:28:39 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> Fri Feb 23 15:28:39 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* decl.c (set_block): Set NAMES and BLOCKS from BLOCK. * decl.c (set_block): Set NAMES and BLOCKS from BLOCK.
......
...@@ -113,13 +113,10 @@ CHILL.info: $(srcdir)/ch/chill.info ...@@ -113,13 +113,10 @@ CHILL.info: $(srcdir)/ch/chill.info
$(srcdir)/ch/chill.info: $(srcdir)/ch/chill.texi $(srcdir)/ch/chill.info: $(srcdir)/ch/chill.texi
cd $(srcdir)/ch && $(MAKEINFO) -o chill.info chill.texi cd $(srcdir)/ch && $(MAKEINFO) -o chill.info chill.texi
chill.dvi: $(srcdir)/ch/chill.texi $(srcdir)/extend.texi $(srcdir)/invoke.texi $(srcdir)/md.texi $(srcdir)/rtl.texi $(srcdir)/tm.texi chill.dvi: $(srcdir)/ch/chill.texi
cd ch ; \ TEXINPUTS=${texidir}:$(srcdir)/ch:$(srcdir):$$TEXINPUTS tex $(srcdir)/ch/chill.texi ; \
TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex chill.texi ; \
texindex chill.?? ; \ texindex chill.?? ; \
TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex chill.texi TEXINPUTS=${texidir}:$(srcdir)/ch:$(srcdir)$$TEXINPUTS tex $(srcdir)/ch/chill.texi
# FIXME: Not sure languages should do this.
cp ch/chill.dvi chill.dvi
# #
# Install hooks: # Install hooks:
# cc1chill is installed elsewhere as part of $(COMPILERS). # cc1chill is installed elsewhere as part of $(COMPILERS).
......
2001-05-20 Joseph S. Myers <jsm28@cam.ac.uk>
* Make-lang.in (f/g77.dvi): Include $(srcdir) in TEXINPUTS.
2001-05-19 Toon Moene <toon@moene.indiv.nluug.nl> 2001-05-19 Toon Moene <toon@moene.indiv.nluug.nl>
* Make-lang.in: Have $(MAKEINFO) look into the parent * Make-lang.in: Have $(MAKEINFO) look into the parent
......
...@@ -195,9 +195,9 @@ f/g77.dvi: $(srcdir)/f/g77.texi $(srcdir)/f/bugs.texi \ ...@@ -195,9 +195,9 @@ f/g77.dvi: $(srcdir)/f/g77.texi $(srcdir)/f/bugs.texi \
# be universally valid. `$(TEX)' should be used if it gets defined in # be universally valid. `$(TEX)' should be used if it gets defined in
# gcc/Makefile.in. # gcc/Makefile.in.
if [ -f lang-f77 ]; then \ if [ -f lang-f77 ]; then \
TEXINPUTS=$(srcdir)/f:$$TEXINPUTS tex $(srcdir)/f/g77.texi; \ TEXINPUTS=$(srcdir)/f:$(srcdir):$$TEXINPUTS tex $(srcdir)/f/g77.texi; \
texindex g77.??; \ texindex g77.??; \
TEXINPUTS=$(srcdir)/f:$$TEXINPUTS tex $(srcdir)/f/g77.texi; \ TEXINPUTS=$(srcdir)/f:$(srcdir):$$TEXINPUTS tex $(srcdir)/f/g77.texi; \
mv g77.dvi f; \ mv g77.dvi f; \
else true; fi else true; fi
......
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