python3-pyserial: also remove /usr/bin/__pycache__

PEP-517 packaging tries to also ship ${bindir}/__pycache__,
since we are removing all the scripts from ${bindir}, remove the cache
as well.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
This commit is contained in:
Tim Orling 2022-02-25 18:21:08 -08:00 committed by Khem Raj
parent 645452c8df
commit 9e5f9a7e2d

View File

@ -9,6 +9,7 @@ inherit pypi setuptools3 ptest
do_install:append() {
rm -f ${D}${bindir}/pyserial-miniterm
rm -f ${D}${bindir}/pyserial-ports
rm -rf ${D}${bindir}/__pycache__
rmdir ${D}${bindir}
}