summaryrefslogtreecommitdiff
path: root/meta-phosphor/recipes-devtools/python/python_2.%.bbappend
blob: 0db91f1795edfab6a9ae6791a9114e001abd43ea (plain)
1
2
3
4
5
6
7
8
9
10
11
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"

# Remove all python .py files from python recipe. Only the .pyc
# files are required. Only do this if the openbmc-phosphor-tiny
# distro feature is enabled
do_install_append_openbmc-phosphor-tiny() {
    # The _sysconfigdata.py is a system configuration file generated
    # during build time. It's used in the yocto packaging process so
    # it is required to remain in the image.
    find ${D}${libdir}/python${PYTHON_MAJMIN} -name \*.py ! -name _sysconfigdata.py -exec rm {} \;
}