Merge pull request #69028 from matthewbauer/remove-iselfexec-iselfdyn

Revert "setup.sh introduce isELFExec, isELFDyn"
This commit is contained in:
Matthew Bauer 2019-09-20 23:26:48 -04:00 committed by GitHub
commit 8e9b98a183
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -211,18 +211,6 @@ isELF() {
if [ "$magic" = $'\177ELF' ]; then return 0; else return 1; fi
}
# Return success if the specified file is an ELF object
# and its e_type is ET_EXEC (executable file)
isELFExec() {
grep -ao -P '^\177ELF.{11}\x00\x02' "$1" >/dev/null
}
# Return success if the specified file is an ELF object
# and its e_type is ET_DYN (shared object file)
isELFDyn() {
grep -ao -P '^\177ELF.{11}\x00\x03' "$1" >/dev/null
}
# Return success if the specified file is a script (i.e. starts with
# "#!").
isScript() {