diff options
author | Jeff Law <law@gcc.gnu.org> | 1997-09-10 00:29:35 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-10 00:29:35 -0600 |
commit | 102115816c0cab5e451b7adc7eacd4c3700ca8a4 (patch) | |
tree | d51c768eb2f8f5c3dda7e450fb846f61041986ef /gcc | |
parent | 48f0be1b361fda9e4b73dd3c0dc687835229506d (diff) | |
download | gcc-102115816c0cab5e451b7adc7eacd4c3700ca8a4.zip gcc-102115816c0cab5e451b7adc7eacd4c3700ca8a4.tar.gz gcc-102115816c0cab5e451b7adc7eacd4c3700ca8a4.tar.bz2 |
Makefile.in (INSTALL): cd to $(srcdir) before running texinfo.
* Makefile.in (INSTALL): cd to $(srcdir) before running texinfo.
(Until we start building all this gunk in objdir...)
From-SVN: r15216
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 123becc..6eb0601 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,8 @@ -Fri Aug 8 17:07:36 1997 Stan Cox <coxs@dg-rtp.dg.com> +Wed Sep 10 00:29:29 1997 Manfred Hollstein <manfred@s-direktnet.de> + + * Makefile.in (INSTALL): cd to $(srcdir) before running texinfo. + +Tue Sep 9 17:07:36 1997 Stan Cox <coxs@dg-rtp.dg.com> * m88k.c (m88k_expand_prologue): Set MEM_IN_STRUCT_P of va_list template. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 88b14e7..73ecd71 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1995,7 +1995,7 @@ $(srcdir)/cpp.dvi: cpp.texi $(TEXI2DVI) $< $(srcdir)/INSTALL: install1.texi install.texi - $(MAKEINFO) -D INSTALLONLY --no-header --no-split \ + cd $(srcdir); $(MAKEINFO) -D INSTALLONLY --no-header --no-split \ `echo $(srcdir)/install1.texi | sed 's,^\./,,'` # # Deletion of files made during compilation. |