From 4e6f0bd1fcc22ef6b3c41aa99a1aee41f83b3974 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Thu, 26 Jan 2017 11:43:25 -0500 Subject: [PATCH] jjb: lttng-ust: Fix missing CPPFLAGS & LDFLAGS on configure for *dist build types Signed-off-by: Jonathan Rajotte --- scripts/lttng-ust/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lttng-ust/build.sh b/scripts/lttng-ust/build.sh index e7a1130..5b9c39e 100755 --- a/scripts/lttng-ust/build.sh +++ b/scripts/lttng-ust/build.sh @@ -116,7 +116,7 @@ dist) echo "Distribution tarball in-tree build" # Initial configure and generate tarball - "$SRCDIR/configure" + CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$SRCDIR/configure" $MAKE dist BUILD_PATH="$(mktemp -d)" @@ -136,7 +136,7 @@ oot-dist) cd "$BUILD_PATH" # Initial configure and generate tarball - "$SRCDIR/configure" + CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$SRCDIR/configure" $MAKE dist NEWSRC_PATH="$(mktemp -d)" -- 2.34.1