diff options
-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 } |