diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-09-12 19:55:38 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-09-12 19:55:38 +0000 |
commit | 7e7cdddf8de42d12563b97e218adb3c4132d22ca (patch) | |
tree | cdc8a49aecc7d3c6b383921d8fe9963f649d74df /package/madwifi/patches/106-get_arch.patch | |
parent | bd04a159f49a1c29dc55384f0e5c35b00464dcd0 (diff) |
madwifi: fix x86_64 compilation
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12574 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/patches/106-get_arch.patch')
-rw-r--r-- | package/madwifi/patches/106-get_arch.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/madwifi/patches/106-get_arch.patch b/package/madwifi/patches/106-get_arch.patch new file mode 100644 index 0000000000..b5ef4f299e --- /dev/null +++ b/package/madwifi/patches/106-get_arch.patch @@ -0,0 +1,16 @@ +--- a/scripts/get_arch.mk ++++ b/scripts/get_arch.mk +@@ -36,6 +36,13 @@ + $(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) |