Skip to content

Commit

Permalink
Merge pull request shellphish#185 from goreil/bugfix-oldlist
Browse files Browse the repository at this point in the history
Bugfix, Makefile now works on oldlist versions
  • Loading branch information
Kyle-Kyle authored May 2, 2024
2 parents c6a55fe + 99cf4cf commit df11470
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $(addprefix download_glibc_, $(VERSIONS)): libc_ready

version=$(patsubst download_glibc_%,%,$@); \
libc=$$(cat glibc-all-in-one/list | grep "$$version" | grep "$(ARCH)" | head -n 1); \
old_libc=$$(cat glibc-all-in-one/old_list | grep "$(version)" | grep "$(ARCH)" | head -n 1); \
old_libc=$$(cat glibc-all-in-one/old_list | grep "$$version" | grep "$(ARCH)" | head -n 1); \
if [ -z $$libc ]; then libc=$$old_libc; script="download_old"; else libc=$$libc; script="download"; fi; \
cd glibc-all-in-one; \
rm -rf libs/$$libc; \
Expand Down

0 comments on commit df11470

Please sign in to comment.