mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			436 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			436 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
--- a/scripts/get_arch.mk
 | 
						|
+++ b/scripts/get_arch.mk
 | 
						|
@@ -36,11 +36,14 @@ ifeq (,$(ARCH-y))
 | 
						|
 $(Cannot determine ARCH)
 | 
						|
 endif
 | 
						|
 
 | 
						|
+# Allow ARCH to be x86
 | 
						|
+ifneq (,$(CONFIG_X86))
 | 
						|
+ifeq (x86,$(ARCH))
 | 
						|
+ARCH-y = $(ARCH)
 | 
						|
+endif
 | 
						|
+endif
 | 
						|
+
 | 
						|
 # Don't allow ARCH to be overridden by a different value.
 | 
						|
 ifeq (,$(ARCH))
 | 
						|
 ARCH = $(ARCH-y)
 | 
						|
-else
 | 
						|
-ifneq ($(ARCH),$(ARCH-y))
 | 
						|
-$(error ARCH mismatch: supplied "$(ARCH)", determined "$(ARCH-y)")
 | 
						|
-endif
 | 
						|
 endif
 |