diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2015-12-25 23:22:47 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2015-12-25 23:22:47 +0000 |
commit | 2e5d78ca45d65145666b6a8a9840d8bd7ccd0df9 (patch) | |
tree | 5fe38f56643650c0b1167b5c5a6ac14031cdb077 | |
parent | 6b86f30b90d72b586f1527cadde17ca825771b1b (diff) | |
download | ports-2e5d78ca45d65145666b6a8a9840d8bd7ccd0df9.tar.gz ports-2e5d78ca45d65145666b6a8a9840d8bd7ccd0df9.zip |
Notes
-rw-r--r-- | Mk/Scripts/qa.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index f444dac1ee21..ba5c4145acd1 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -174,7 +174,7 @@ stripped() { # Split file and result into 2 lines and read separately to ensure # files with spaces are kept intact. # Using readelf -h ... /ELF Header:/ will match on all ELF files. - find ${STAGEDIR} -type f ! -name '*.a' \ + find ${STAGEDIR} -type f ! -name '*.a' ! -name '*.o' \ -exec readelf -S {} + 2>/dev/null | awk '\ /File:/ {sub(/File: /, "", $0); file=$0} \ /SYMTAB/ {print file}' | |