From 0324877d8a21262829e022fceb8b1e08c7c93109 Mon Sep 17 00:00:00 2001 From: Kyle Zeng Date: Tue, 30 Apr 2024 17:57:32 -0700 Subject: [PATCH] initialize glibc-all-in-one in fresh installed repo --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9e8e0e9..2c7fa3d 100644 --- a/Makefile +++ b/Makefile @@ -25,8 +25,13 @@ LDLIBS += -ldl base: $(BASE_BINS) +# initialize glibc-all-in-one +libc_ready: + git submodule update --init --recursive + cd glibc-all-in-one && ./update_list + # populate the download_glibc_ rules -$(addprefix download_glibc_, $(VERSIONS)): +$(addprefix download_glibc_, $(VERSIONS)): libc_ready @echo $@ version=$(patsubst download_glibc_%,%,$@); \