diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-04-03 18:45:24 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-04-05 14:49:07 +0100 |
commit | 34afa37f5f4765f73c63d440351a5cb63008a5cc (patch) | |
tree | 2b9767ba6ea7193ed44740b1e4cfef441d988f06 /meta/recipes-core/glib-2.0 | |
parent | 243fd5a74d9152a6c88bd8a0182c403a2bcbf20e (diff) | |
download | poky-34afa37f5f4765f73c63d440351a5cb63008a5cc.tar.gz |
glib-2.0/glib.inc: apply MLPREFIX renaming to all package classes
Now that we have postinst intercept execution working for SDK generation,
adding MLPREFIX again makes sense in all cases, as the intercepts do require
that it is there.
This reverts commit 4ffb728df4bdf21daef31d89cfa5771eaf0d90f8.
(From OE-Core rev: 0792540170b6150a0c5fe8586bb8012affc3f90e)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glib-2.0')
-rw-r--r-- | meta/recipes-core/glib-2.0/glib.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc index 7e062eeb5d..b7c32e64bc 100644 --- a/meta/recipes-core/glib-2.0/glib.inc +++ b/meta/recipes-core/glib-2.0/glib.inc | |||
@@ -104,6 +104,11 @@ do_install_append () { | |||
104 | if [ -e ${D}${libdir}/charset.alias ]; then | 104 | if [ -e ${D}${libdir}/charset.alias ]; then |
105 | rm -f ${D}${libdir}/charset.alias | 105 | rm -f ${D}${libdir}/charset.alias |
106 | fi | 106 | fi |
107 | |||
108 | # Make sure gio-querymodules is unique among multilibs | ||
109 | if test "x${MLPREFIX}" != "x"; then | ||
110 | mv ${D}${libexecdir}/gio-querymodules ${D}${libexecdir}/${MLPREFIX}gio-querymodules | ||
111 | fi | ||
107 | } | 112 | } |
108 | 113 | ||
109 | do_install_append_class-target () { | 114 | do_install_append_class-target () { |
@@ -114,11 +119,6 @@ do_install_append_class-target () { | |||
114 | rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test | 119 | rm ${D}${datadir}/installed-tests/glib/gdbus-serialization.test |
115 | fi | 120 | fi |
116 | fi | 121 | fi |
117 | |||
118 | # Make sure gio-querymodules is unique among multilibs | ||
119 | if test "x${MLPREFIX}" != "x"; then | ||
120 | mv ${D}${libexecdir}/gio-querymodules ${D}${libexecdir}/${MLPREFIX}gio-querymodules | ||
121 | fi | ||
122 | } | 122 | } |
123 | 123 | ||
124 | CODEGEN_PYTHON_RDEPENDS = "python3 python3-distutils python3-xml" | 124 | CODEGEN_PYTHON_RDEPENDS = "python3 python3-distutils python3-xml" |