diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2024-05-07 11:27:57 +0200 |
---|---|---|
committer | Marc Poulhiès <poulhies@adacore.com> | 2024-06-14 09:34:51 +0200 |
commit | f89a68a20e37fbb7c3e2dd6a9b3450294487a550 (patch) | |
tree | 1642c0e56683538ea86c225ea5ea0c47988e1b61 | |
parent | 83061c80d29f71b1aa07664fd129af6542c9fc83 (diff) | |
download | gcc-f89a68a20e37fbb7c3e2dd6a9b3450294487a550.zip gcc-f89a68a20e37fbb7c3e2dd6a9b3450294487a550.tar.gz gcc-f89a68a20e37fbb7c3e2dd6a9b3450294487a550.tar.bz2 |
ada: Do not include target-specific makefile fragments
They are unused in this context.
gcc/ada/
* gcc-interface/Makefile.in (tmake_file): Remove all references.
-rw-r--r-- | gcc/ada/gcc-interface/Makefile.in | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/ada/gcc-interface/Makefile.in b/gcc/ada/gcc-interface/Makefile.in index 0666fc0..29db89c 100644 --- a/gcc/ada/gcc-interface/Makefile.in +++ b/gcc/ada/gcc-interface/Makefile.in @@ -148,7 +148,6 @@ host_vendor=@host_vendor@ host_os=@host_os@ target_cpu_default = @target_cpu_default@ xmake_file = @xmake_file@ -tmake_file = @tmake_file@ #version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c` #mainversion=`sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/' < $(srcdir)/version.c` @@ -209,11 +208,6 @@ all: all.indirect # This tells GNU Make version 3 not to put all variables in the environment. .NOEXPORT: -# target overrides -ifneq ($(tmake_file),) -include $(tmake_file) -endif - # host overrides ifneq ($(xmake_file),) include $(xmake_file) |