summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormanfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4>1998-03-20 00:33:35 +0000
committermanfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4>1998-03-20 00:33:35 +0000
commit80a9e3eb9cb382ef8d24110073950521ec0f814d (patch)
tree0f28cd905ddbc6a3f989adc57c46c81f9599495a
parentb86bf1e1ec4768e7920755e2814314823f6a770a (diff)
downloadgcc-80a9e3eb9cb382ef8d24110073950521ec0f814d.tar.gz
8
* Makefile.in (install-gcc): Don't specify LANGUAGES here. (install-gcc-cross): Instead, override LANGUAGES here. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18722 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 22c2b179143..1a94dad9c57 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Mar 20 09:32:14 1998 Manfred Hollstein <manfred@s-direktnet.de>
+
+ * Makefile.in (install-gcc): Don't specify LANGUAGES here.
+ (install-gcc-cross): Instead, override LANGUAGES here.
+
1998-03-18 Dave Love <d.love@dl.ac.uk>
* Makefile.in ($(CONFIGURE_TARGET_MODULES)): Set CONFIG_SITE to a
diff --git a/Makefile.in b/Makefile.in
index 55fad1244a0..4522a3c2d16 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1345,7 +1345,7 @@ install-gcc:
r=`pwd`; export r; \
s=`cd $(srcdir); pwd`; export s; \
$(SET_LIB_PATH) \
- (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" install); \
+ (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
else \
true; \
fi
@@ -1356,7 +1356,7 @@ install-gcc-cross:
r=`pwd`; export r; \
s=`cd $(srcdir); pwd`; export s; \
$(SET_LIB_PATH) \
- (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
+ (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" install); \
else \
true; \
fi