diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-11-02 23:21:06 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-11-02 23:21:06 -0500 |
commit | 5b38d166d773d8f95b48cdfd8b29e0728d561ece (patch) | |
tree | 83bd23f39b2b1e32d9ed396110289f8e9d1e1f37 | |
parent | 23a435c04bf152efbd43d2a1f185a0c56e048b50 (diff) | |
download | image-mingw64-5b38d166d773d8f95b48cdfd8b29e0728d561ece.tar.gz image-mingw64-5b38d166d773d8f95b48cdfd8b29e0728d561ece.tar.bz2 image-mingw64-5b38d166d773d8f95b48cdfd8b29e0728d561ece.zip |
Remove strings before linking everything
-rwxr-xr-x | init | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5,6 +5,7 @@ rc-service networking start | |||
5 | apk add alpine-base mingw-w64-gcc make patch lua | 5 | apk add alpine-base mingw-w64-gcc make patch lua |
6 | 6 | ||
7 | # Link all the mingw executables to pretend to be a real gcc build system | 7 | # Link all the mingw executables to pretend to be a real gcc build system |
8 | rm /usr/bin/strings | ||
8 | ls /usr/bin/x86_64-w64-mingw32-* \ | 9 | ls /usr/bin/x86_64-w64-mingw32-* \ |
9 | | sed 's;/usr/bin/x86_64-w64-mingw32-;;g' \ | 10 | | sed 's;/usr/bin/x86_64-w64-mingw32-;;g' \ |
10 | | xargs -I {} ln -s /usr/bin/x86_64-w64-mingw32-{} /usr/bin/{} | 11 | | xargs -I {} ln -s /usr/bin/x86_64-w64-mingw32-{} /usr/bin/{} |