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

svn path=/main/branches/2.1.2/; revision=8936

bin/misc-functions.sh

index 9e37fe1184e8bb9961f29d3db775c3101ccb8e0e..3fe748760f55ac0dcba0e4d1e35590b57bb546a4 100755 (executable)
@@ -319,7 +319,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"