diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-09-12 19:55:38 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-09-12 19:55:38 +0000 |
commit | 9029e3d9ef122604a79b4d45be7dcec6e59f27f8 (patch) | |
tree | 5c06dd7e2df259a69cd5a3f82b6b45ab5ab06d57 | |
parent | 52bb4fac97c65c9902844f3fe4e99ac5907fe198 (diff) | |
download | upstream-9029e3d9ef122604a79b4d45be7dcec6e59f27f8.tar.gz upstream-9029e3d9ef122604a79b4d45be7dcec6e59f27f8.tar.bz2 upstream-9029e3d9ef122604a79b4d45be7dcec6e59f27f8.zip |
madwifi: fix x86_64 compilation
SVN-Revision: 12574
-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) |