summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python
diff options
context:
space:
mode:
authorJustin Bronder <jsbronder@cold-front.org>2024-09-05 14:55:25 -0400
committerKhem Raj <raj.khem@gmail.com>2024-09-05 12:31:34 -0700
commit4a86f8a54fe96f4aa05232180a2a744a15638f55 (patch)
tree31900fab513ac3cac406b5e5763a4d28d8831114 /meta-python/recipes-devtools/python
parent1f933b6936dbaaf74dc8daf6b09a6bd2655807ff (diff)
downloadmeta-openembedded-4a86f8a54fe96f4aa05232180a2a744a15638f55.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> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r--meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb4
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 c1ad6a2a82..e41afb56c0 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
10do_install:append() { 10do_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
16RDEPENDS:${PN} += " \ 16RDEPENDS:${PN} += " \