check-links.sh: treat PIE executable as elf files

This commit is contained in:
Baptiste Daroussin 2021-09-23 04:48:50 +02:00
parent 3fcbde5e88
commit 88741a40c8

View File

@ -49,7 +49,7 @@ fi
mime=$(file -L --mime-type $1)
isbin=0
case $mime in
*application/x-executable) isbin=1 ;;
*application/x-executable|*application/x-pie-executable) isbin=1 ;;
*application/x-sharedlib);;
*) echo "Not an elf file" >&2 ; exit 1;;
esac