diff options
-rw-r--r-- | androidbp/cmd/soong.go | 2 | ||||
-rw-r--r-- | common/arch.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/androidbp/cmd/soong.go b/androidbp/cmd/soong.go index 6058ec3c..5ddfc51b 100644 --- a/androidbp/cmd/soong.go +++ b/androidbp/cmd/soong.go @@ -126,7 +126,7 @@ var cpuVariantConditionals = map[string]struct { "mips_rev6": {"ifdef ARCH_MIPS_REV6", "mips", false}, "atom": {"ifeq ($(TARGET_ARCH_VARIANT),atom)", "$(TARGET_ARCH)", true}, "silvermont": {"ifeq ($(TARGET_ARCH_VARIANT),silvermont)", "$(TARGET_ARCH)", true}, - "x86_ssse3": {"ifeq ($(ARCH_X86_HAVE_SSSE3),true)", "x86", false}, + "x86_ssse3": {"ifeq ($(ARCH_X86_HAVE_SSSE3),true)", "x86", false}, "x86_sse4": {"ifeq ($(ARCH_X86_HAVE_SSE4),true)", "x86", false}, } diff --git a/common/arch.go b/common/arch.go index 28b5dd63..4dd01c30 100644 --- a/common/arch.go +++ b/common/arch.go @@ -149,7 +149,7 @@ type archProperties struct { // X86 arch variants X86_ssse3 interface{} `blueprint:"filter(android:\"arch_variant\")"` - X86_sse4 interface{} `blueprint:"filter(android:\"arch_variant\")"` + X86_sse4 interface{} `blueprint:"filter(android:\"arch_variant\")"` // X86 cpu variants Atom interface{} `blueprint:"filter(android:\"arch_variant\")"` |