diff options
author | K. Richard Pixley <rich@cygnus> | 1992-02-08 08:57:08 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-02-08 08:57:08 +0000 |
commit | bcdbe02f820a40a3f01374cfdf7d18c0d7183117 (patch) | |
tree | 01b26d5937b844c164a0ddf28a21aa04946e5b09 /Makefile.in | |
parent | b8972815d5c6db764d39ef1f2ba6f52de57e13a0 (diff) | |
download | gdb-bcdbe02f820a40a3f01374cfdf7d18c0d7183117.zip gdb-bcdbe02f820a40a3f01374cfdf7d18c0d7183117.tar.gz gdb-bcdbe02f820a40a3f01374cfdf7d18c0d7183117.tar.bz2 |
In configure{.in} {host|target}_makefile_frag should name a file
relative to srcdir. I think it now does. configure has been
corrected. configure.texi has been clarified.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 318f8d9..5472d9c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -91,6 +91,7 @@ configure.info: configure.texi install-info: install-info-dirs force $(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(INSTALL_DATA) cfg-paper.info $(infodir)/cfg-paper.info + $(INSTALL_DATA) configure.info $(infodir)/configure.info $(MAKE) dir.info install-dir.info install-dir.info: @@ -1548,6 +1549,7 @@ install-fileutils: force .PHONY: all-libg++ just-libg++ all-libg++: just-gcc just-libg++ # NOTE! We have added GXX= and XTRAFLAGS to the $(MAKE) line!!! +# and CC == GXX # Do not clone this one. just-libg++: force if [ -d $(unsubdir)/libg++ ] ; then \ @@ -1561,7 +1563,7 @@ just-libg++: force "against=$(against)" \ "AR=$(AR)" \ "AR_FLAGS=$(AR_FLAGS)" \ - "CC=$(CC)" \ + CC=`cd $(unsubdir)/..$(subdir); pwd`"/gcc/gcc -B"`cd $(unsubdir)/..$(subdir);pwd`"/gcc/" \ "RANLIB=$(RANLIB)" \ "LOADLIBES=$(LOADLIBES)" \ "LDFLAGS=$(LDFLAGS)" \ |