Browse Source

build: make non-parallel

There's a race condition with loading the submodules that's causes a
build failure on my machine, since the libwally 'includes' aren't on
disk yet when the gcc build step starts.
register-keysend-plugin
lisa neigut 5 years ago
committed by Rusty Russell
parent
commit
9663d110d1
  1. 2
      tools/build-release.sh

2
tools/build-release.sh

@ -7,7 +7,7 @@ if [ x"$1" = x"--inside-docker" ]; then
git clone /src /build
cd /build
./configure
make -j3
make
make install DESTDIR=/"$VER"
cd /"$VER" && tar cvfz /release/clightning-"$VER".tar.gz -- *
exit 0

Loading…
Cancel
Save