We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6a55fe + 99cf4cf commit df11470Copy full SHA for df11470
Makefile
@@ -36,7 +36,7 @@ $(addprefix download_glibc_, $(VERSIONS)): libc_ready
36
37
version=$(patsubst download_glibc_%,%,$@); \
38
libc=$$(cat glibc-all-in-one/list | grep "$$version" | grep "$(ARCH)" | head -n 1); \
39
- 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); \
40
if [ -z $$libc ]; then libc=$$old_libc; script="download_old"; else libc=$$libc; script="download"; fi; \
41
cd glibc-all-in-one; \
42
rm -rf libs/$$libc; \
0 commit comments