diff options
author | Manfred Hollstein <manfred@s-direktnet.de> | 1998-01-28 09:31:48 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-28 02:31:48 -0700 |
commit | d0a8352c0db58a1ea129d0232604f6f8f0081939 (patch) | |
tree | 0d62848e1190f000287f6f6daf15b5050d33a14d | |
parent | 3a744fee03d8e6b5f88832f8d0603cad11d583fd (diff) | |
download | gcc-d0a8352c0db58a1ea129d0232604f6f8f0081939.zip gcc-d0a8352c0db58a1ea129d0232604f6f8f0081939.tar.gz gcc-d0a8352c0db58a1ea129d0232604f6f8f0081939.tar.bz2 |
Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix) here as it is not defined in the toplevel Makefile.
* Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix)
here as it is not defined in the toplevel Makefile.
From-SVN: r17528
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 5 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Wed Jan 28 10:26:37 1998 Manfred Hollstein <manfred@s-direktnet.de> + + * Makefile.in (BASE_FLAGS_TO_PASS): Remove passing $(local_prefix) + here as it is not defined in the toplevel Makefile. + Tue Jan 27 23:25:06 1998 Manfred Hollstein <manfred@s-direktnet.de> * configure (package_makefile_rules_frag): New variable, which names diff --git a/Makefile.in b/Makefile.in index 253630d..f09be472 100644 --- a/Makefile.in +++ b/Makefile.in @@ -329,7 +329,6 @@ BASE_FLAGS_TO_PASS = \ "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \ "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \ "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \ - "gxx_include_dir=$(gxx_include_dir)" \ "INSTALL=$(INSTALL)" \ "INSTALL_DATA=$(INSTALL_DATA)" \ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ @@ -341,7 +340,6 @@ BASE_FLAGS_TO_PASS = \ "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \ "LIBCXXFLAGS=$(LIBCXXFLAGS)" \ "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \ - "local_prefix=$(local_prefix)" \ "M4=$(M4)" \ "MAKE=$(MAKE)" \ "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \ @@ -357,7 +355,8 @@ BASE_FLAGS_TO_PASS = \ "YACC=$(YACC)" \ "exec_prefix=$(exec_prefix)" \ "prefix=$(prefix)" \ - "tooldir=$(tooldir)" + "tooldir=$(tooldir)" \ + "gxx_include_dir=$(gxx_include_dir)" # Flags to pass down to most sub-makes, in which we're building with # the host environment. |