From 33f16eb97c6974215cfb1320e41ca34827a975a0 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 3 Nov 2024 11:11:25 +0100 Subject: [PATCH] Update patchelf to 0.18.0 https://github.com/probonopd/go-appimage/issues/311 --- build.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 620344d..bf666ad 100755 --- a/build.sh +++ b/build.sh @@ -50,8 +50,10 @@ echo -ne 'AI\x02' | dd of=runtime-fuse3 bs=1 count=3 seek=8 conv=notrunc # magic cd - # Build static patchelf -wget https://github.com/NixOS/patchelf/archive/0.9.tar.gz # 0.10 cripples my files, puts XXXXX inside -tar xf 0.9.tar.gz +# wget https://github.com/NixOS/patchelf/archive/0.9.tar.gz +# 0.10 cripples my files, puts XXXXX inside; tring 0.18.0 +wget https://github.com/NixOS/patchelf/archive/refs/tags/0.18.0.tar.gz +tar xf 0.18.0.tar.gz cd patchelf-*/ ./bootstrap.sh ./configure --prefix=/usr CFLAGS=-no-pie LDFLAGS=-static