mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-04 13:04:22 +00:00
7b8f2dc6ec
Update to latest version. Replace mirror with @GNU/bc. Manually refresh: - 001-no_doc.patch Add patch found here:26f275502d
as 002-fix-libmath.patch to fix compilation. Add another patch found here:55b26eda94
as 003-bc-fix-hang.patch to prevent a hang when building the kernel. Signed-off-by: Nick Hainke <vincent@systemli.org>
12 lines
233 B
Diff
12 lines
233 B
Diff
--- a/bc/execute.c
|
|
+++ b/bc/execute.c
|
|
@@ -595,7 +595,7 @@ input_char (void)
|
|
if (in_ch == '.' || in_ch == '+' || in_ch == '-')
|
|
return (in_ch);
|
|
if (in_ch <= ' ')
|
|
- return (' ');
|
|
+ return (':');
|
|
|
|
return (':');
|
|
}
|