diff options
Diffstat (limited to 'extra/nodejs/build')
-rwxr-xr-x | extra/nodejs/build | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/extra/nodejs/build b/extra/nodejs/build index 0ef981e1..e773f969 100755 --- a/extra/nodejs/build +++ b/extra/nodejs/build @@ -1,12 +1,16 @@ #!/bin/sh -e -# shellcheck disable=3045 +# shellcheck disable=3045,2039 ulimit -n 4096 ||: ./configure \ --prefix=/usr \ - --with-intl=none \ + --with-intl=small-icu \ + --fully-static \ --ninja +# Remove broken subninja that we don't require anyway. +# clsed '/^subninja.*openssl-fipsmodule/d' out/Release/build.ninja + ninja -C out/Release tools/install.py install "$1" /usr |