Add --enable-build-man-pages to tools dist build
[lttng-ci.git] / scripts / lttng-tools / build.sh
index 88c0e2699384ca243b4dea7179ba2cb5581e56e2..b557c4143bee859b586163206d82c9965f015a9d 100755 (executable)
@@ -196,7 +196,7 @@ case "$build" in
         BUILD_PATH=`mktemp -d`
 
         # Initial configure and generate tarball
-        MAKE=$MAKE BISON="$BISON" YACC="$YACC" CFLAGS="$CFLAGS" ./configure $CONF_OPTS
+        MAKE=$MAKE BISON="$BISON" YACC="$YACC" CFLAGS="$CFLAGS" ./configure $CONF_OPTS --enable-build-man-pages
         $MAKE dist
 
         mkdir -p $BUILD_PATH
@@ -217,7 +217,7 @@ case "$build" in
 esac
 
 # BUILD!
-$MAKE -j `$NPROC`
+$MAKE -j `$NPROC` V=1
 $MAKE install
 
 # Run tests
@@ -238,6 +238,10 @@ if [ "$RUN_TESTS" = "yes" ]; then
 
     cd $BUILD_PATH/tests
 
+    # Force the lttng-sessiond path to /bin/true to prevent the spawing of a
+    # lttng-sessiond --daemonize on "lttng create"
+    export LTTNG_SESSIOND_PATH="/bin/true"
+
     # Run 'unit_tests' and 'fast_regression' test suites for all configs except 'no-ust'
     if [ "$conf" != "no-ust" ]; then
         prove --merge -v --exec '' - < $BUILD_PATH/tests/unit_tests --archive $WORKSPACE/tap/unit/ || true
This page took 0.022674 seconds and 4 git commands to generate.