summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glib-2.0
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-12-15 08:52:08 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-21 10:38:29 +0000
commit028c318f7cfeb381c3c01b3050e8eb1e4bf8be54 (patch)
treedffafa9c9221284d9d63e0b3a6472c704200f917 /meta/recipes-core/glib-2.0
parent504651f853714b51be8204b9b17b1bf93b412019 (diff)
downloadpoky-028c318f7cfeb381c3c01b3050e8eb1e4bf8be54.tar.gz
glib-2.0: replace distutils dependency with setuptools
(From OE-Core rev: 6a4d86cfa3b838eaa861936adee7a07f2a6a03b3) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.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.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index fbf3a39b15..eb292c51d4 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -146,7 +146,9 @@ do_install:append:mingw32() {
146 rm -f ${D}${bindir}/gtester-report 146 rm -f ${D}${bindir}/gtester-report
147} 147}
148 148
149CODEGEN_PYTHON_RDEPENDS = "python3 python3-distutils python3-xml" 149# remove setuptools dependency when usage of distutils is dropped in
150# https://gitlab.gnome.org/GNOME/glib/-/blob/main/gio/gdbus-2.0/codegen/utils.py
151CODEGEN_PYTHON_RDEPENDS = "python3 python3-setuptools python3-xml"
150CODEGEN_PYTHON_RDEPENDS:mingw32 = "" 152CODEGEN_PYTHON_RDEPENDS:mingw32 = ""
151 153
152RDEPENDS:${PN}-codegen += "${CODEGEN_PYTHON_RDEPENDS}" 154RDEPENDS:${PN}-codegen += "${CODEGEN_PYTHON_RDEPENDS}"