diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-28 15:13:23 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-12-28 15:13:23 +0100 |
commit | cdadad58a1555b50fe8478291a0cd9ff23e2aadb (patch) | |
tree | 8be4f303843c63ba792c82bf5d7d8480ea91de0e /miscutils | |
parent | df1ff103c9e0496e7de9528500cddff36701609e (diff) | |
download | busybox-cdadad58a1555b50fe8478291a0cd9ff23e2aadb.tar.gz |
bc: bc enables FEATURE_DC_BIG, for correct dc testsuite operation
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/bc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 6463817bb..c10cd73fa 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -7,6 +7,7 @@ //config:config BC //config: bool "bc (45 kb)" //config: default y +//config: select FEATURE_DC_BIG //config: help //config: bc is a command-line, arbitrary-precision calculator with a //config: Turing-complete language. See the GNU bc manual @@ -58,7 +59,6 @@ //config: //config:config FEATURE_DC_BIG //config: bool "Use bc code base for dc (larger, more features)" -//config: depends on DC && !BC //config: default y //config: //config:config FEATURE_DC_LIBM |