Force `DYNAMIC_ARCH` to empty when `DYNAMIC_CORE` is not set
authorElliot Saba <staticfloat@gmail.com>
Thu, 4 May 2017 18:52:34 +0000 (11:52 -0700)
committerElliot Saba <staticfloat@gmail.com>
Thu, 4 May 2017 19:55:31 +0000 (12:55 -0700)
Makefile.system

index 207c996..8d114f4 100644 (file)
@@ -453,8 +453,9 @@ DYNAMIC_CORE += HASWELL ZEN
 endif
 endif
 
+# If DYNAMIC_CORE is not set, DYNAMIC_ARCH cannot do anything, so force it to empty
 ifndef DYNAMIC_CORE
-DYNAMIC_ARCH =
+override DYNAMIC_ARCH=
 endif
 endif