diff options
author | Sven Gothel <[email protected]> | 2022-02-07 15:00:55 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-02-07 15:00:55 +0100 |
commit | 4e11083952c3b8540adfea8d16025183f2bc93af (patch) | |
tree | 2e1f212f326fb93f1b5a76d62e1ee2619dd84ded /scripts | |
parent | 9983491e49050bf93cb389e4ff9b8157e5a7ae7e (diff) |
Adjust *build-doc.sh
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-doc.sh | 6 | ||||
-rw-r--r-- | scripts/rebuild-doc.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build-doc.sh b/scripts/build-doc.sh index e6aa87e6..0e4a1d85 100755 --- a/scripts/build-doc.sh +++ b/scripts/build-doc.sh @@ -34,9 +34,9 @@ buildit() { mkdir -p build-$archabi cd build-$archabi # CLANG_ARGS="-DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++" - cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/dist-$archabi -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DBUILD_TESTING=ON .. - # cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/dist-$archabi -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DBUILD_TESTING=ON -DDEBUG=ON .. - make -j $CPU_COUNT install test doc + cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/dist-$archabi -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DBUILD_TRIAL=ON .. + # cmake $CLANG_ARGS -DCMAKE_INSTALL_PREFIX=$rootdir/dist-$archabi -DBUILDJAVA=ON -DBUILDEXAMPLES=ON -DBUILD_TRIAL=ON -DDEBUG=ON .. + make -j $CPU_COUNT doc if [ $? -eq 0 ] ; then echo "BUILD SUCCESS $bname $archabi" rm -f $rootdir/documentation.tar.xz diff --git a/scripts/rebuild-doc.sh b/scripts/rebuild-doc.sh index 563f30b5..1eee1c2b 100644 --- a/scripts/rebuild-doc.sh +++ b/scripts/rebuild-doc.sh @@ -27,7 +27,7 @@ buildit() { cd $rootdir/build-$archabi rm -rf documentation - make -j $CPU_COUNT install doc + make -j $CPU_COUNT doc if [ $? -eq 0 ] ; then echo "REBUILD SUCCESS $bname $archabi" rm -f $rootdir/documentation.tar.xz |