1
0
mirror of https://git.openwrt.org/feed/routing.git synced 2024-06-15 19:54:02 +02:00
openwrt-routing/cjdns/patches/001-five-mins-builder-zonk.patch
Rosen Penev 0907cf0a94 cjdns: update to 21
Fixed compilation with musl 1.2.x , mostly.

Added a patch fixing compilation on 32-bit platforms.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-26 11:52:20 +00:00

14 lines
463 B
Diff

--- a/node_build/builder.js
+++ b/node_build/builder.js
@@ -215,8 +215,8 @@ var execJs = function (js, builder, file
js = qs.join("'");
var to = setTimeout(function () {
- throw new Error("Inline JS did not return after 120 seconds [" + js + "]");
- }, 120000);
+ throw new Error("Inline JS did not return after 5 minutes [" + js + "]");
+ }, 300000);
var REQUIRE = function (str) {
if (typeof(str) !== 'string') {