]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commit
file: fix the way path is written to environment-setup.d
authorOleksandr Hnatiuk <ohnatiuk@cisco.com>
Tue, 25 Jul 2023 16:51:48 +0000 (09:51 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 27 Jul 2023 20:07:18 +0000 (21:07 +0100)
commitc6206249683876670602888e78ecaf719753a317
tree7312218ca8fcaf8651a5fd3324e2b541890bda74
parent4c95a7381ea835dce8119845d6c146800e98f960
file: fix the way path is written to environment-setup.d

$OECORE_NATIVE_SYSROOT is not escaped, thus it is expanded to an empty string.
This happens to work because we have ${datadir} which in this context is
relocated to the buildtools sysroot after installation of buildtools.

If the $ before OECORE_NATIVE_SYSROOT is escaped, it will be saved to file.sh
as intended, but MAGIC will point to the wrong location because both
OECORE_NATIVE_SYSROOT and datadir resolve to sysroot which doubles the path
like so:
/path/to/buildtools/sysroots/x86_64-xesdk-linux/path/to/buildtools/sysroots/x86_64-xesdk-linux/usr/share/misc/magic.mgc
which does not exist. So, removing reference to OECORE_NATIVE_SYSROOT.

Signed-off-by: Oleksandr Hnatiuk <ohnatiuk@cisco.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
meta/recipes-devtools/file/file_5.44.bb