diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-02-22 14:07:16 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-02-22 14:07:16 +0200 |
commit | 5c05446d0783b40b9e981b1af2f1ed0f3f331324 (patch) | |
tree | 5039c6db52c5ea3667f7e825efbb60b253ccb90e | |
parent | d1ab7ed40f5f2acc8ba476a34828cf5000c63550 (diff) | |
download | abuild-5c05446d0783b40b9e981b1af2f1ed0f3f331324.tar.gz abuild-5c05446d0783b40b9e981b1af2f1ed0f3f331324.tar.bz2 abuild-5c05446d0783b40b9e981b1af2f1ed0f3f331324.tar.xz abuild-5c05446d0783b40b9e981b1af2f1ed0f3f331324.zip |
abuild: use gnu find supported way to find suid binaries
-rw-r--r-- | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -618,7 +618,7 @@ postcheck() { echo "$i" fi # check so we dont have any suid root binaries that are not PIE - i=$(find "$dir" -type f -perm +6000 \ + i=$(find "$dir" -type f -perm /6000 \ | xargs scanelf --nobanner --etype ET_EXEC \ | sed "s|ET_EXEC $dir|\t|") if [ -n "$i" ]; then |