summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python-mako_1.0.3.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-05-11 16:36:37 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-01 12:38:42 +0100
commitf540622fb0d51d9f1a46c8559244527fef2d8303 (patch)
tree55e9abbff67b0f7b196cb363f82027478f0f9c43 /meta/recipes-devtools/python/python-mako_1.0.3.bb
parentbe4e792f694bf44d23aefc32a81f7be9823e29db (diff)
downloadpoky-f540622fb0d51d9f1a46c8559244527fef2d8303.tar.gz
python3-mako: add a Python 3 recipe
This will be necessary for transiting piglit to Python 3. Python 2 recipe should be kept as it is used by mesa (and gobject-introspection, for now). (From OE-Core rev: 72be3752a56d681672fb3e04413ff3cc59391150) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python-mako_1.0.3.bb')
-rw-r--r--meta/recipes-devtools/python/python-mako_1.0.3.bb6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-mako_1.0.3.bb b/meta/recipes-devtools/python/python-mako_1.0.3.bb
index 9efd700dc0..d4f426dadd 100644
--- a/meta/recipes-devtools/python/python-mako_1.0.3.bb
+++ b/meta/recipes-devtools/python/python-mako_1.0.3.bb
@@ -22,3 +22,9 @@ RDEPENDS_${PN} = "python-threading \
22RDEPENDS_${PN}_class-native = "" 22RDEPENDS_${PN}_class-native = ""
23 23
24BBCLASSEXTEND = "native nativesdk" 24BBCLASSEXTEND = "native nativesdk"
25
26# The same utility is packaged in python3-mako, so it would conflict
27do_install_append() {
28 rm -f ${D}${bindir}/mako-render
29 rm -df ${D}${bindir}
30}