diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-06 06:36:08 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-02-06 06:36:08 +0000 |
commit | b3e9ad4bdda84d9577f58590fdc2b4e0e72560eb (patch) | |
tree | 4766082b53343b332fc0dae0fbe39e415fbdffdf /gcc/Makefile.in | |
parent | e3bb8f1a5064dacdebe5ef02db9f93ac1e1d7845 (diff) | |
download | gcc-b3e9ad4bdda84d9577f58590fdc2b4e0e72560eb.tar.gz |
2001-02-05 Benjamin Kosnik <bkoz@redhat.com>
* Makefile.in (-DGPLUSPLUS_TOOL_INCLUDE_DIR): Change to target
subdir of gcc_gxx_include_dir.
(gcc_gxx_target_include_dir): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39480 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index cc78c6cb0f2..0786f83afd1 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -318,8 +318,6 @@ slibdir = @slibdir@ build_tooldir = $(exec_prefix)/$(target_alias) # Directory in which the compiler finds target-independent g++ includes. gcc_gxx_include_dir = @gcc_gxx_include_dir@ -# Directory in which the compiler finds target-dependent g++ includes. -gcc_gxx_target_include_dir = $(libsubdir)/$(unlibsubdir)/..`echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/$(target_alias)/include/@libstdcxx_incdir@ # Directory to search for site-specific includes. includedir = $(local_prefix)/include # assertdir is overridden in cross-make. @@ -1910,7 +1908,7 @@ intl.all intl.install intl.uninstall \ PREPROCESSOR_DEFINES = \ -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \ -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \ - -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_target_include_dir)\" \ + -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_alias)\" \ -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \ -DCROSS_INCLUDE_DIR=\"$(gcc_tooldir)/sys-include\" \ -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" |