diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2017-07-27 04:44:21 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-08-13 13:19:40 +0200 |
commit | 888970ac7cd10c779542fb5000f784bca8f61d1e (patch) | |
tree | 55406baab42c43e95e86cca7b09f4f60a1dd058e /meta-oe/recipes-devtools/glade | |
parent | fcfa955fcb030c84a0362e113be506030c65b06c (diff) | |
download | meta-openembedded-888970ac7cd10c779542fb5000f784bca8f61d1e.tar.gz |
glade: fix host contamination on centos7
Since gobject-introspection convert to python3 in oe-core,
incorrectly assigning PYTHON_PN with python caused host python3
loaded.
On centos7, built with qemuarm failed:
...
arm-poky-linux-gnueabi-gcc: error: unrecognized argument in option
'-mtune=generic'
..
arm-poky-linux-gnueabi-gcc: error: unrecognized command line option
'-m64'
Traceback (most recent call last):
File "/usr/lib64/python3.4/distutils/unixccompiler.py", line 126, in
_compile
...
The native python3 should be loaded.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/glade')
-rw-r--r-- | meta-oe/recipes-devtools/glade/glade_3.20.0.bb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta-oe/recipes-devtools/glade/glade_3.20.0.bb b/meta-oe/recipes-devtools/glade/glade_3.20.0.bb index 8b35a9c49..f33b6e31b 100644 --- a/meta-oe/recipes-devtools/glade/glade_3.20.0.bb +++ b/meta-oe/recipes-devtools/glade/glade_3.20.0.bb | |||
@@ -9,7 +9,7 @@ DEPENDS = "gtk+ gtk+3 glib-2.0 libxml2 intltool-native \ | |||
9 | " | 9 | " |
10 | 10 | ||
11 | 11 | ||
12 | inherit autotools pkgconfig pythonnative gnomebase gobject-introspection | 12 | inherit autotools pkgconfig gnomebase gobject-introspection |
13 | 13 | ||
14 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/glade/3.20/glade-${PV}.tar.xz \ | 14 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/glade/3.20/glade-${PV}.tar.xz \ |
15 | file://remove-yelp-help-rules-var.patch \ | 15 | file://remove-yelp-help-rules-var.patch \ |
@@ -23,5 +23,3 @@ FILES_${PN} += "${datadir}/* ${libdir}/glade/modules/libgladegtk.so" | |||
23 | FILES_${PN}-dev += "${libdir}/glade/modules/libgladegtk.la" | 23 | FILES_${PN}-dev += "${libdir}/glade/modules/libgladegtk.la" |
24 | FILES_${PN}-dbg += "${libdir}/glade/modules/.debug/libgladegtk.so" | 24 | FILES_${PN}-dbg += "${libdir}/glade/modules/.debug/libgladegtk.so" |
25 | 25 | ||
26 | PYTHON_PN = "python" | ||
27 | |||