diff options
-rwxr-xr-x | bin/misc-functions.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 1da66392c..d1b8c5eb3 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -326,7 +326,8 @@ install_qa_check() { # Compiled python objects do not belong in /usr/share (FHS violation) # and can be a pain when upgrading python - f=$([ -d "${D}"/usr/share ] && find "${D}"/usr/share -name '*.py[co]') + f=$([ -d "${D}"/usr/share ] && \ + find "${D}"usr/share -name '*.py[co]' | sed "s:${D}:/:") if [[ -n ${f} ]] ; then vecho -ne '\a\n' eqawarn "QA Notice: Precompiled python object files do not belong in /usr/share" |