aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/Scripts
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2013-10-19 08:17:10 +0800
committerbapt <bapt@FreeBSD.org>2013-10-19 08:17:10 +0800
commitb2dc8cb2a6f6d2ee8989d92dfeebfe430ff05ba2 (patch)
tree56cd92d67ddb593b7561066730f558204b81f45c /Mk/Scripts
parent96c5a19768c9ecb6ad4741d323ea257b2db4b6ef (diff)
downloadfreebsd-ports-gnome-b2dc8cb2a6f6d2ee8989d92dfeebfe430ff05ba2.tar.gz
freebsd-ports-gnome-b2dc8cb2a6f6d2ee8989d92dfeebfe430ff05ba2.tar.zst
freebsd-ports-gnome-b2dc8cb2a6f6d2ee8989d92dfeebfe430ff05ba2.zip
Recommand to use STRIP_CMD to strip binaries given that it will respect the WITH_DEBUG option
Diffstat (limited to 'Mk/Scripts')
-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
}