diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-29 20:08:19 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-29 20:08:19 +0000 |
commit | 0859a188c5f70497dde6dc5ef33f47d626a3c65e (patch) | |
tree | 23cc7170db830a026bafd04cd9869302a2fd0dd1 /openwrt/package | |
parent | 2346e8fd145e4c45760d9d5519a99db8ef1239df (diff) |
fix ipkg install bug (default arch was not set)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1786 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package')
-rw-r--r-- | openwrt/package/busybox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/busybox/Makefile b/openwrt/package/busybox/Makefile index 1b11c87b27..907a848d11 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): |