diff options
author | Christoph Muellner <cmuellner@linux.com> | 2021-09-15 13:52:53 +0200 |
---|---|---|
committer | Christoph Muellner <cmuellner@linux.com> | 2021-09-15 13:52:53 +0200 |
commit | e9b692f344b682a7998ac5d222496a17f9b58aa0 (patch) | |
tree | a3042e987fd4a4a2e640ec66d6065388aba66fca /Makefile.in | |
parent | 1a36b5dc44d71ab6a583db5f4f0062c2a4ad963b (diff) | |
download | riscv-gnu-toolchain-e9b692f344b682a7998ac5d222496a17f9b58aa0.zip riscv-gnu-toolchain-e9b692f344b682a7998ac5d222496a17f9b58aa0.tar.gz riscv-gnu-toolchain-e9b692f344b682a7998ac5d222496a17f9b58aa0.tar.bz2 |
Fix typo in build-libc dependencies
The variable MULTLIB_NAMES does not exist but is used when
generating the dependencies for the target build-libc for glibc.
Even when adding the missing 'I' (for MULTILIB_NAMES) there is
still no variable with this name.
So the whole dependency generation is useless, becauese it was not
needed so far. Looking into detail why it is so, we can find the
answer in the dependency list of the target 'stamps/build-gcc-linux-stage2'.
Let's fix this by setting the dependencies for build-libc right.
The dependencies for 'stamps/build-gcc-linux-stage2' stay as they are
not wrong.
Fixes: 3456b66f69 ("Add a "make report" phony target")
Signed-off-by: Christoph Muellner <cmuellner@linux.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 1fd5463..38e3a78 100644 --- a/Makefile.in +++ b/Makefile.in @@ -113,7 +113,7 @@ build-binutils: stamps/build-binutils-@default_target@ build-gdb: stamps/build-gdb-@default_target@ build-gcc%: stamps/build-gcc-@default_target@-stage% ifeq (@default_target@,linux) -build-libc: $(patsubst %,stamps/build-glibc-linux-%,$(MULTLIB_NAMES)) +build-libc: $(addprefix stamps/build-glibc-linux-,$(GLIBC_MULTILIB_NAMES)) else build-libc: stamps/build-newlib stamps/build-newlib-nano \ stamps/merge-newlib-nano |