fix: accept PIE binaries in release packaging file check

ober

ba589c3a0c9a7bed9d23b6e756c72285b1ff7056

diff --git a/support/package-jerboa-release.sh b/support/package-jerboa-release.sh
index 190ff84..8c09da9 100755
--- a/support/package-jerboa-release.sh
+++ b/support/package-jerboa-release.sh
@@ -57,10 +57,10 @@ fi
 file_desc=$(file "$source_bin")
 case "$target:$file_desc" in
     macos-arm64:*"Mach-O 64-bit executable arm64"*) ;;
-    linux-amd64:*"ELF 64-bit LSB executable, x86-64"*) ;;
-    linux-arm64:*"ELF 64-bit LSB executable, ARM aarch64"*) ;;
+    linux-amd64:*"ELF 64-bit LSB"*"executable, x86-64"*) ;;
+    linux-arm64:*"ELF 64-bit LSB"*"executable, ARM aarch64"*) ;;
     android-arm64:*"ELF 64-bit LSB"*"ARM aarch64"*"Android"*) ;;
-    freebsd-amd64:*"ELF 64-bit LSB executable, x86-64"*"FreeBSD"*) ;;
+    freebsd-amd64:*"ELF 64-bit LSB"*"executable, x86-64"*"FreeBSD"*) ;;
     *)
         echo "ERROR: $source_bin does not look like target $target" >&2
         echo "       file: $file_desc" >&2