diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-17 17:11:48 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-17 17:11:48 +0200 |
commit | 4f8079de877cf2b7206e4cabaf465fb7d8cc4f62 (patch) | |
tree | 1dbfd660488da226fa09b21304a82473b7439746 | |
parent | 0ba80e4fa251a1c753e5feaff4b358a427aa58cb (diff) | |
download | busybox-w32-4f8079de877cf2b7206e4cabaf465fb7d8cc4f62.tar.gz busybox-w32-4f8079de877cf2b7206e4cabaf465fb7d8cc4f62.tar.bz2 busybox-w32-4f8079de877cf2b7206e4cabaf465fb7d8cc4f62.zip |
ash: "you disabled math" is wrong: user did not disable it, builder of ash did
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 987d618c6..eb5156bea 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -11926,7 +11926,7 @@ parsesub: { | |||
11926 | #if ENABLE_FEATURE_SH_MATH | 11926 | #if ENABLE_FEATURE_SH_MATH |
11927 | PARSEARITH(); | 11927 | PARSEARITH(); |
11928 | #else | 11928 | #else |
11929 | raise_error_syntax("you disabled math support for $((arith)) syntax"); | 11929 | raise_error_syntax("support for $((arith)) is disabled"); |
11930 | #endif | 11930 | #endif |
11931 | } else { | 11931 | } else { |
11932 | pungetc(); | 11932 | pungetc(); |