diff options
author | Glenn L McGrath | 2004-08-11 02:45:47 +0000 |
---|---|---|
committer | Glenn L McGrath | 2004-08-11 02:45:47 +0000 |
commit | 73db8be80a2bca50e0d29a162f5d431f70e227c8 (patch) | |
tree | 974bb226421e4baecba178833433ba9cb13b0bdc /coreutils/Config.in | |
parent | d2c6f9a1f9d5974155f1a7224aecbafba91631a1 (diff) | |
download | busybox-73db8be80a2bca50e0d29a162f5d431f70e227c8.zip busybox-73db8be80a2bca50e0d29a162f5d431f70e227c8.tar.gz |
Patch from Bastian Blank to add 64 bit support to the test command.
Example of broken usage: ./busybox test 2147483648 -gt 2147483648
Diffstat (limited to 'coreutils/Config.in')
-rw-r--r-- | coreutils/Config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/coreutils/Config.in b/coreutils/Config.in index c995e55..e1f0516 100644 --- a/coreutils/Config.in +++ b/coreutils/Config.in @@ -455,6 +455,13 @@ if !CONFIG_ASH && !CONFIG_HUSH && !CONFIG_LASH && !CONFIG_MSH and bash) have test builtin. endif +config CONFIG_FEATURE_TEST_64 + bool " Extend test to 64 bit" + default n + depends on CONFIG_TEST + help + Enable 64-bit support in test. + config CONFIG_TOUCH bool "touch" default n |