diff options
author | Alper Ak <alperyasinak1@gmail.com> | 2025-06-21 13:19:25 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-27 00:55:42 -0700 |
commit | dcc8eb8f44ce99b71e4dbe54f4adcfe36a0b0d2f (patch) | |
tree | a6bd4bb680ac57d4ed1c7f41e1a9a0246844867e | |
parent | 850d9bb0117213e145645e570fd8b84edbbf9ac2 (diff) | |
download | meta-openembedded-dcc8eb8f44ce99b71e4dbe54f4adcfe36a0b0d2f.tar.gz |
ace: set S to be in UNPACKDIR in recipes that explicitly set S
It was related to latest UNPACKDIR changes -> https://git.openembedded.org/openembedded-core/commit/?id=46480a5e66747a673041fe4452a0ab14a1736d5e
ERROR: ace-8.0.2-r0 do_install: oe_runmake failed
ERROR: ace-8.0.2-r0 do_install: Execution of '/srv/pokybuild/yocto-worker/meta-oe/build/build/tmp/work/core2-64-poky-linux/ace/8.0.2/temp/run.do_install.14265' failed with exit code 1
Signed-off-by: Alper Ak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-connectivity/ace/ace_8.0.2.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb b/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb index 0fe41a7b92..b730b0a86c 100644 --- a/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb +++ b/meta-oe/recipes-connectivity/ace/ace_8.0.2.bb | |||
@@ -21,13 +21,13 @@ CVE_STATUS[CVE-2009-1147] = "cpe-incorrect: this CVE is for vmware ace" | |||
21 | COMPATIBLE_HOST:libc-musl = "null" | 21 | COMPATIBLE_HOST:libc-musl = "null" |
22 | 22 | ||
23 | S = "${UNPACKDIR}/ACE_wrappers" | 23 | S = "${UNPACKDIR}/ACE_wrappers" |
24 | B = "${WORKDIR}/ACE_wrappers/ace" | 24 | B = "${UNPACKDIR}/ACE_wrappers/ace" |
25 | export ACE_ROOT = "${WORKDIR}/ACE_wrappers" | 25 | export ACE_ROOT = "${UNPACKDIR}/ACE_wrappers" |
26 | 26 | ||
27 | inherit pkgconfig | 27 | inherit pkgconfig |
28 | 28 | ||
29 | CXXFLAGS:append = " -fpermissive -Wnodeprecated-declarations" | 29 | CXXFLAGS:append = " -fpermissive -Wnodeprecated-declarations" |
30 | CXX:append = " -ffile-prefix-map=${WORKDIR}= " | 30 | CXX:append = " -ffile-prefix-map=${UNPACKDIR}= " |
31 | EXTRA_OEMAKE += "INSTALL_LIB=${baselib} install_rpath=0" | 31 | EXTRA_OEMAKE += "INSTALL_LIB=${baselib} install_rpath=0" |
32 | 32 | ||
33 | do_install() { | 33 | do_install() { |