From 79832f2ef61c9356f6b6cbb570ba5e83931671c2 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Wed, 6 Jan 2016 11:31:09 -0500 Subject: [PATCH] Add CONFIG_LTTNG=m var to build modules master --- scripts/lttng-modules/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lttng-modules/build.sh b/scripts/lttng-modules/build.sh index 94f17bb..1a1aaaf 100755 --- a/scripts/lttng-modules/build.sh +++ b/scripts/lttng-modules/build.sh @@ -65,7 +65,7 @@ if { vergte "$KVERSION" "3.10" && verlte "$KVERSION" "3.10.13"; } || \ set +e # Build modules - make -j${NPROC} -C "${LNXBINDIR}" M="$(pwd)" + make -j${NPROC} -C "${LNXBINDIR}" M="$(pwd)" V=1 # We expect this build to fail, if it doesn't, fail the job. if [ "$?" -eq 0 ]; then @@ -80,7 +80,7 @@ if { vergte "$KVERSION" "3.10" && verlte "$KVERSION" "3.10.13"; } || \ else # Regular build # Build modules - make -j${NPROC} -C "${LNXBINDIR}" M="$(pwd)" V=1 + make -j${NPROC} -C "${LNXBINDIR}" M="$(pwd)" V=1 CONFIG_LTTNG=m # Install modules to build dir make INSTALL_MOD_PATH="${BUILDDIR}" -C "${LNXBINDIR}" M="$(pwd)" modules_install -- 2.34.1