aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-10-02 00:43:29 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2022-10-02 00:43:29 +0900
commitb008176fa106134d4919d8f336c28fe623174592 (patch)
treeab261f7d55b1b1d5454c977ff213bff723754fdc /bootstrap
parente0d7f6335d48aafe3dbdeab250f875a2ce864c79 (diff)
downloadgnunet-b008176fa106134d4919d8f336c28fe623174592.tar.gz
gnunet-b008176fa106134d4919d8f336c28fe623174592.zip
-try fix for nongnu make
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap4
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 842312c8b..8fa0e02b7 100755
--- a/bootstrap
+++ b/bootstrap
@@ -109,9 +109,11 @@ sphinx_update()
109 cwd=$PWD 109 cwd=$PWD
110 cd contrib/sphinx || exit 1 110 cd contrib/sphinx || exit 1
111 # GNS 111 # GNS
112 make all || exit 1 112 make html || exit 1
113 cp -r _build/html ../../doc/handbook/ || exit 1 113 cp -r _build/html ../../doc/handbook/ || exit 1
114 make info || exit 1
114 cp -r _build/texinfo ../../doc/handbook/ || exit 1 115 cp -r _build/texinfo ../../doc/handbook/ || exit 1
116 make man || exit 1
115 cp -r _build/man/* ../../doc/man || exit 1 117 cp -r _build/man/* ../../doc/man || exit 1
116 cd $cwd 118 cd $cwd
117 else 119 else