From e9b692f344b682a7998ac5d222496a17f9b58aa0 Mon Sep 17 00:00:00 2001 From: Christoph Muellner Date: Wed, 15 Sep 2021 13:52:53 +0200 Subject: 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 --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.1