These don't change, so their initial values should be just fine. Apparently,
in a typical build, those os.uname() snippets are called around 46k times,
which seems a tad excessive :)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
# Architecture-dependent build variables.
##################################################################
-BUILD_ARCH = "${@os.uname()[4]}"
-BUILD_OS = "${@os.uname()[0].lower()}"
+BUILD_ARCH := "${@os.uname()[4]}"
+BUILD_OS := "${@os.uname()[0].lower()}"
BUILD_VENDOR = ""
BUILD_SYS = "${BUILD_ARCH}${BUILD_VENDOR}-${BUILD_OS}"
BUILD_PREFIX = ""