From 9663d110d1114732731c071882b75344991d95ff Mon Sep 17 00:00:00 2001 From: lisa neigut Date: Fri, 17 Apr 2020 16:07:21 -0500 Subject: [PATCH] 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. --- tools/build-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build-release.sh b/tools/build-release.sh index a08ac84d4..51ce0339a 100755 --- a/tools/build-release.sh +++ b/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