summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRenat Khalikov <renat_khalikov@trimble.com>2023-12-21 14:57:33 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-23 08:46:00 +0000
commit0d9de34ac6772c0b32ef8a54c2367d14691fb6e4 (patch)
tree26e4f83fb0ed07a27e72b6c4b4bdd01269a9e31d
parent7b663133a68eb7db2567ab8a4c4ae03f2ceaaf63 (diff)
downloadpoky-0d9de34ac6772c0b32ef8a54c2367d14691fb6e4.tar.gz
python3-maturin: Add missing space appending to CFLAGS
When the CFLAGS variable is appended to, the missing space causes build errors when CFLAGS was set previously. For example: error: unrecognized command-line option '-mno-unaligned-access-fdebug-prefix-map=${CARGO_HOME}=${TARGET_DBGSRC_DIR}/cargo_home' (From OE-Core rev: cac54e6a6c6601629305b006f99fd1215565182b) Signed-off-by: Renat Khalikov <renat_khalikov@trimble.com> CC: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/python/python3-maturin_1.4.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3-maturin_1.4.0.bb b/meta/recipes-devtools/python/python3-maturin_1.4.0.bb
index 07ad1201b8..82e65abb24 100644
--- a/meta/recipes-devtools/python/python3-maturin_1.4.0.bb
+++ b/meta/recipes-devtools/python/python3-maturin_1.4.0.bb
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "ed12e1768094a7adeafc3a74ebdb8dc2201fa64c4e7e31f14cfc70378b
9 9
10S = "${WORKDIR}/maturin-${PV}" 10S = "${WORKDIR}/maturin-${PV}"
11 11
12CFLAGS:append = "-fdebug-prefix-map=${CARGO_HOME}=${TARGET_DBGSRC_DIR}/cargo_home" 12CFLAGS:append = " -fdebug-prefix-map=${CARGO_HOME}=${TARGET_DBGSRC_DIR}/cargo_home"
13 13
14DEPENDS += "\ 14DEPENDS += "\
15 python3-setuptools-rust-native \ 15 python3-setuptools-rust-native \