summaryrefslogtreecommitdiff
path: root/Mk/Scripts/qa.sh
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-10-19 00:17:10 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-10-19 00:17:10 +0000
commit049b1676647197563e0a1ad1c4376430bbe315cd (patch)
tree56cd92d67ddb593b7561066730f558204b81f45c /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.sh2
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
}