mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
d30a825a20
commit
1b07e854d9
|
@ -1,3 +1,10 @@
|
|||
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>
|
||||
|
||||
* decl.c (set_block): Set NAMES and BLOCKS from BLOCK.
|
||||
|
|
|
@ -113,13 +113,10 @@ CHILL.info: $(srcdir)/ch/chill.info
|
|||
$(srcdir)/ch/chill.info: $(srcdir)/ch/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
|
||||
cd ch ; \
|
||||
TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex chill.texi ; \
|
||||
chill.dvi: $(srcdir)/ch/chill.texi
|
||||
TEXINPUTS=${texidir}:$(srcdir)/ch:$(srcdir):$$TEXINPUTS tex $(srcdir)/ch/chill.texi ; \
|
||||
texindex chill.?? ; \
|
||||
TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex chill.texi
|
||||
# FIXME: Not sure languages should do this.
|
||||
cp ch/chill.dvi chill.dvi
|
||||
TEXINPUTS=${texidir}:$(srcdir)/ch:$(srcdir)$$TEXINPUTS tex $(srcdir)/ch/chill.texi
|
||||
#
|
||||
# Install hooks:
|
||||
# cc1chill is installed elsewhere as part of $(COMPILERS).
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
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>
|
||||
|
||||
* Make-lang.in: Have $(MAKEINFO) look into the parent
|
||||
|
|
|
@ -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
|
||||
# gcc/Makefile.in.
|
||||
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.??; \
|
||||
TEXINPUTS=$(srcdir)/f:$$TEXINPUTS tex $(srcdir)/f/g77.texi; \
|
||||
TEXINPUTS=$(srcdir)/f:$(srcdir):$$TEXINPUTS tex $(srcdir)/f/g77.texi; \
|
||||
mv g77.dvi f; \
|
||||
else true; fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue