aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-08-29 20:08:19 +0000
committerNicolas Thill <nico@openwrt.org>2005-08-29 20:08:19 +0000
commitc8c80478f9c94ed7912f74aaa8f987bc874feb31 (patch)
tree23cc7170db830a026bafd04cd9869302a2fd0dd1
parent117f73d4b8f0f96ab084a9f15570bd1792a3f717 (diff)
downloadupstream-c8c80478f9c94ed7912f74aaa8f987bc874feb31.tar.gz
upstream-c8c80478f9c94ed7912f74aaa8f987bc874feb31.tar.bz2
upstream-c8c80478f9c94ed7912f74aaa8f987bc874feb31.zip
fix ipkg install bug (default arch was not set)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1786 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--openwrt/package/busybox/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/busybox/Makefile b/openwrt/package/busybox/Makefile
index 1b11c87b270..907a848d11f 100644
--- a/openwrt/package/busybox/Makefile
+++ b/openwrt/package/busybox/Makefile
@@ -32,7 +32,7 @@ $(PKG_BUILD_DIR)/.configured:
$(PKG_BUILD_DIR)/.built:
$(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" PREFIX="$(IDIR_BUSYBOX)" \
- EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR)
+ EXTRA_CFLAGS="$(TARGET_CFLAGS)" ARCH="$(ARCH)" -C $(PKG_BUILD_DIR)
touch $@
$(IPKG_BUSYBOX):