summaryrefslogtreecommitdiff
path: root/Makefile.in
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 /Makefile.in
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
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
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