forked from openkylin/platform_build
Provide default variant for x86.
The TARGET_ARCH_VARIANT was not being set for x86. This caused some difficulties when x86-atom tried to include variant-specific versions of files.
This commit is contained in:
parent
1af09dea7c
commit
8d7c2b5c6d
|
@ -1,6 +1,11 @@
|
|||
# Configuration for Linux on x86.
|
||||
# Included by combo/select.make
|
||||
|
||||
# Provide a default variant.
|
||||
ifeq ($(strip $(TARGET_ARCH_VARIANT)),)
|
||||
TARGET_ARCH_VARIANT := x86
|
||||
endif
|
||||
|
||||
# right now we get these from the environment, but we should
|
||||
# pick them from the tree somewhere
|
||||
$(combo_target)CC := $(CC)
|
||||
|
|
Loading…
Reference in New Issue