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.
This commit is contained in:
lisa neigut 2020-04-17 16:07:21 -05:00 committed by Rusty Russell
parent 1b2f4990ab
commit 9663d110d1

View File

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