diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-20 13:50:44 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-20 13:50:44 +0000 |
commit | 266b52c8df5aae2abe005b6dff6fbd87c33e613b (patch) | |
tree | a6e9c03cae969e381c0b74e45df0739224f1cc6f /gcc/ch | |
parent | b00bfd318081e8c3dbc8aba0c761811ba9ad2e73 (diff) | |
download | gcc-266b52c8df5aae2abe005b6dff6fbd87c33e613b.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42345 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ch')
-rw-r--r-- | gcc/ch/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/ch/Make-lang.in | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index 315713d3ebe..912bca31862 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -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. diff --git a/gcc/ch/Make-lang.in b/gcc/ch/Make-lang.in index 54751289794..156a742af3b 100644 --- a/gcc/ch/Make-lang.in +++ b/gcc/ch/Make-lang.in @@ -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). |