In "QA Notice: Precompiled python" messages, use sed to strip the
authorZac Medico <zmedico@gentoo.org>
Sat, 15 Dec 2007 23:49:06 +0000 (23:49 -0000)
committerZac Medico <zmedico@gentoo.org>
Sat, 15 Dec 2007 23:49:06 +0000 (23:49 -0000)
leading ${D} from file paths.

svn path=/main/trunk/; revision=8935

bin/misc-functions.sh

index 1da66392c0ef050414617b919b93756f0f622df6..d1b8c5eb3d5040c8ea30960a2d271c74932d3088 100755 (executable)
@@ -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"