mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
The old rm (e.g., Ubuntu 12.04's) doesn't has -d option, use rmdir to make it work. BTW., the "-f" option in rm -df doesn't make any sense. (From OE-Core rev: 0a78e2051e6e735e3a47a8d46d150f5e62ba505c) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
376 B
BlitzBasic
18 lines
376 B
BlitzBasic
require python-mako.inc
|
|
|
|
inherit setuptools
|
|
|
|
RDEPENDS_${PN} = "python-threading \
|
|
python-netclient \
|
|
python-html \
|
|
"
|
|
RDEPENDS_${PN}_class-native = ""
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
# The same utility is packaged in python3-mako, so it would conflict
|
|
do_install_append() {
|
|
rm -f ${D}${bindir}/mako-render
|
|
rmdir ${D}${bindir}
|
|
}
|