diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-03 10:56:19 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-03 10:56:19 +0000 |
commit | ed17f3271536c41c9d822239042b5f9f1457de4c (patch) | |
tree | df3859b3ea1ceef0335de693e1475e00432b4c2d /package | |
parent | 8d9946530ec6b8d1c571a15473ab4a27cff4e6f4 (diff) | |
download | upstream-ed17f3271536c41c9d822239042b5f9f1457de4c.tar.gz upstream-ed17f3271536c41c9d822239042b5f9f1457de4c.tar.bz2 upstream-ed17f3271536c41c9d822239042b5f9f1457de4c.zip |
busybox: support 64 bit math in shell tests. this does not seem to increase the binary size at all (tested on mips), fixes #2871
SVN-Revision: 17838
Diffstat (limited to 'package')
-rw-r--r-- | package/busybox/config/coreutils/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/busybox/config/coreutils/Config.in b/package/busybox/config/coreutils/Config.in index f7b8f320f7..4b106cf42e 100644 --- a/package/busybox/config/coreutils/Config.in +++ b/package/busybox/config/coreutils/Config.in @@ -230,7 +230,7 @@ config BUSYBOX_CONFIG_EXPR config BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64 bool "Extend Posix numbers support to 64 bit" - default n + default y depends on BUSYBOX_CONFIG_EXPR help Enable 64-bit math support in the expr applet. This will make @@ -660,7 +660,7 @@ config BUSYBOX_CONFIG_TEST config BUSYBOX_CONFIG_FEATURE_TEST_64 bool "Extend test to 64 bit" - default n + default y depends on BUSYBOX_CONFIG_TEST || BUSYBOX_CONFIG_ASH_BUILTIN_TEST help Enable 64-bit support in test. |