Skip to content

Commit df11470

Browse files
authored
Merge pull request shellphish#185 from goreil/bugfix-oldlist
Bugfix, Makefile now works on oldlist versions
2 parents c6a55fe + 99cf4cf commit df11470

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ $(addprefix download_glibc_, $(VERSIONS)): libc_ready
3636

3737
version=$(patsubst download_glibc_%,%,$@); \
3838
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); \
39+
old_libc=$$(cat glibc-all-in-one/old_list | grep "$$version" | grep "$(ARCH)" | head -n 1); \
4040
if [ -z $$libc ]; then libc=$$old_libc; script="download_old"; else libc=$$libc; script="download"; fi; \
4141
cd glibc-all-in-one; \
4242
rm -rf libs/$$libc; \

0 commit comments

Comments
 (0)