diff options
author | bapt <bapt@FreeBSD.org> | 2013-10-19 08:17:10 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-10-19 08:17:10 +0800 |
commit | b2dc8cb2a6f6d2ee8989d92dfeebfe430ff05ba2 (patch) | |
tree | 56cd92d67ddb593b7561066730f558204b81f45c /Mk/Scripts | |
parent | 96c5a19768c9ecb6ad4741d323ea257b2db4b6ef (diff) | |
download | freebsd-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.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 } |