mirror of
https://git.yoctoproject.org/poky
synced 2026-03-11 17:59:39 +01:00
Having a generic word like "all" as an override is dangerous as this is an override and can cause issues for function names like "sysroot_stage_all". This patch changes it to "allarch" to help avoid this kind of problem. The field is only used in the name of directories anyway. (From OE-Core rev: 5d7d4e1ed9bedf2b6510796d76ea8f94739b9de2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
396 B
Plaintext
16 lines
396 B
Plaintext
#
|
|
# This class is used for architecture independent recipes/data files (usally scripts)
|
|
#
|
|
|
|
PACKAGE_ARCH = "all"
|
|
|
|
# No need for virtual/libc or a cross compiler
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
# Set these to a common set of values, we shouldn't be using them other that for WORKDIR directory
|
|
# naming anyway
|
|
TARGET_ARCH = "allarch"
|
|
TARGET_OS = "linux"
|
|
TARGET_CC_ARCH = "none"
|
|
PACKAGE_EXTRA_ARCHS = ""
|