]> code.ossystems Code Review - openembedded-core.git/commit
classes/package: Use HOST_OS for runtime dependencies
authorJoshua Watt <JPEWhacker@gmail.com>
Tue, 21 Jul 2020 17:52:19 +0000 (12:52 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 22 Jul 2020 11:45:52 +0000 (12:45 +0100)
commitf284c5b2df220b520b025a59874e04ef4becd829
treeaf9d6672baa18097d8c97dfd7421b2978178570e
parent01245db2893e39ffb5d4a00e4689f048d0698974
classes/package: Use HOST_OS for runtime dependencies

The code was using TARGET_OS to try and detect what type of OS the
packages would be running on, but this is incorrect. TARGET_OS is the OS
for which the package will generate output (e.g. GCC output target or
GDB debugging target). The OS where the package will run is the HOST_OS.
Note that HOST_OS only differs from TARGET_OS when doing a
canadian cross compile, and even then in our case only when doing so for
a non-Linux host (e.g. MinGW).

Fix the code to use HOST_OS instead.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/package.bbclass