Skip to content

Commit

Permalink
initialize glibc-all-in-one in fresh installed repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Kyle committed May 1, 2024
1 parent af2e061 commit 0324877
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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_<version> rules
$(addprefix download_glibc_, $(VERSIONS)):
$(addprefix download_glibc_, $(VERSIONS)): libc_ready
@echo $@

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

0 comments on commit 0324877

Please sign in to comment.