Skip to content

Commit 0324877

Browse files
committed
initialize glibc-all-in-one in fresh installed repo
1 parent af2e061 commit 0324877

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,13 @@ LDLIBS += -ldl
2525

2626
base: $(BASE_BINS)
2727

28+
# initialize glibc-all-in-one
29+
libc_ready:
30+
git submodule update --init --recursive
31+
cd glibc-all-in-one && ./update_list
32+
2833
# populate the download_glibc_<version> rules
29-
$(addprefix download_glibc_, $(VERSIONS)):
34+
$(addprefix download_glibc_, $(VERSIONS)): libc_ready
3035
@echo $@
3136

3237
version=$(patsubst download_glibc_%,%,$@); \

0 commit comments

Comments
 (0)