diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-12-06 14:01:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-12-06 14:01:23 +0000 |
commit | a3aeeae9ba01d9f3a30ea2a35adb1a5ad9056504 (patch) | |
tree | 4fdac4ba066d6bec6a0a0cbf895a49ed15059dd3 | |
parent | ca8f2de659823da03f1fbaa092c576fea27fc8e7 (diff) | |
download | upstream-a3aeeae9ba01d9f3a30ea2a35adb1a5ad9056504.tar.gz upstream-a3aeeae9ba01d9f3a30ea2a35adb1a5ad9056504.tar.bz2 upstream-a3aeeae9ba01d9f3a30ea2a35adb1a5ad9056504.zip |
finally fix libintl issues on osx and potentially other platforms by disabling its use in busybox completely
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9663 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/busybox/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile index c5e103c8e5..ab5e2416c2 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -55,6 +55,7 @@ define Build/Configure yes '' | $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ + KBUILD_HAVE_NLS=no \ ARCH="$(ARCH)" \ oldconfig endef @@ -63,6 +64,7 @@ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ + KBUILD_HAVE_NLS=no \ EXTRA_CFLAGS="$(TARGET_CFLAGS)" \ ARCH="$(ARCH)" \ IPKG_ARCH="$(ARCH)" \ |