diff options
author | Justin Bronder <jsbronder@cold-front.org> | 2024-11-05 16:19:51 -0500 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2024-11-09 14:40:58 -0500 |
commit | adbc54688bbc9f2c20fc3758b95cd34679239d14 (patch) | |
tree | ba9117fc8dfeb6142d4c20fd39d3d9f8ce08ecac | |
parent | a543e6c3bf7e1b7937e7ab45d77d6bcfc7e5a2bd (diff) | |
download | meta-openembedded-adbc54688bbc9f2c20fc3758b95cd34679239d14.tar.gz |
python3-xmodem: replace hardcoded /usr with ${prefix}
Without this the native recipe cannot be built.
Signed-off-by: Justin Bronder <jsbronder@cold-front.org>
(cherry picked from commit 4a86f8a54fe96f4aa05232180a2a744a15638f55)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb b/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb index 482f0c641b..a5942e3d5c 100644 --- a/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb +++ b/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb | |||
@@ -9,8 +9,8 @@ inherit pypi setuptools3 | |||
9 | 9 | ||
10 | do_install:append() { | 10 | do_install:append() { |
11 | install -d ${D}${docdir}/${PN} | 11 | install -d ${D}${docdir}/${PN} |
12 | mv ${D}/usr/doc/* ${D}${docdir}/${PN}/ | 12 | mv ${D}${prefix}/doc/* ${D}${docdir}/${PN}/ |
13 | rmdir ${D}/usr/doc | 13 | rmdir ${D}${prefix}/doc |
14 | } | 14 | } |
15 | 15 | ||
16 | RDEPENDS:${PN} += " \ | 16 | RDEPENDS:${PN} += " \ |