diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2014-04-21 20:17:00 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2014-04-21 20:17:00 +0000 |
commit | a45906707f535df9b9c2c2dce709f6e9e3f83cbe (patch) | |
tree | b9a1437f890e9dbbc3e3810ef6226e48c70d74d3 /Mk | |
parent | ccc6c731dc1fa403440c3a31532a29f8b76b05d8 (diff) |
Notes
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/Scripts/qa.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index 3a708426f346..c54010a15500 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -81,7 +81,7 @@ symlinks() { [ -z "${l}" ] && continue case "${link}" in ${STAGEDIR}*) - err "Bad symlinks ${l} pointing inside the stage directory" + err "Bad symlinks ${l#${STAGEDIR}${PREFIX}/} pointing inside the stage directory" rc=1 ;; esac @@ -106,7 +106,7 @@ paths() { */lib/ruby/gems/*/Makefile.html) continue ;; */lib/ruby/gems/*/mkmf.log) continue ;; esac - err "${f} is referring to ${STAGEDIR}" + err "${f#${STAGEDIR}${PREFIX}/} is referring to ${STAGEDIR}" rc=1 # Use heredoc to avoid losing rc from find|while subshell done << EOF @@ -123,8 +123,8 @@ stripped() { find ${STAGEDIR} -type f -exec /usr/bin/file -nNF '' {} + | while read f output; do case "${output}" in - ELF\ *\ executable,\ *,\ not\ stripped*|ELF\ *\ shared\ object,\ *,\ not\ stripped*) - warn "${f} is not stripped consider using \${STRIP_CMD}" + ELF\ *\ executable,\ *FreeBSD*,\ not\ stripped*|ELF\ *\ shared\ object,\ *FreeBSD*,\ not\ stripped*) + warn "${f#${STAGEDIR}${PREFIX}/} is not stripped consider using \${STRIP_CMD}" ;; esac done |