diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-10-19 00:17:10 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-10-19 00:17:10 +0000 |
commit | 049b1676647197563e0a1ad1c4376430bbe315cd (patch) | |
tree | 56cd92d67ddb593b7561066730f558204b81f45c /Mk/Scripts/qa.sh | |
parent | - Support staging (diff) |
Recommand to use STRIP_CMD to strip binaries given that it will respect the WITH_DEBUG option
Notes
Notes:
svn path=/head/; revision=330810
Diffstat (limited to 'Mk/Scripts/qa.sh')
-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 75ff3915b7cd..4272c362f9e0 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -66,7 +66,7 @@ stripped() { for f in `find ${STAGEDIR} -type f`; do output=`/usr/bin/file ${f}` case "${output}" in - *:*\ ELF\ *,\ not\ stripped*) warn "${f} is not stripped";; + *:*\ ELF\ *,\ not\ stripped*) warn "${f} is not stripped consider using \${STRIP_CMD}";; esac done } |