From 99cf4cf35b6115b095f1f90704313bb8648fb36f Mon Sep 17 00:00:00 2001 From: goreil Date: Thu, 2 May 2024 22:37:33 +0200 Subject: [PATCH] Bugfix, Makefile now works on oldlist versions --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3a80668..a9e2d54 100644 --- a/Makefile +++ b/Makefile @@ -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; \