From d1f0a7e927a0915906d13e26c9bbcfd74582d731 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Tue, 16 Jan 2018 13:51:43 +0100 Subject: jenkins_common.sh: fix build_bts distcheck for more than one conf_flag Passing configure flags in DISTCHECK_CONFIGURE_FLAGS requires enclosing all flags in quotes. Currently we seem to have no callers with more than one configure flag, so we were lucky not to break there. Change-Id: I37bc517a30d00c744eddc8565a0a8181cb3b2cdb --- contrib/jenkins_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/jenkins_common.sh b/contrib/jenkins_common.sh index cc1b5b3c..bdb12d55 100644 --- a/contrib/jenkins_common.sh +++ b/contrib/jenkins_common.sh @@ -43,5 +43,5 @@ build_bts() { ./configure $conf_flags $MAKE $PARALLEL_MAKE $MAKE check || cat-testlogs.sh - DISTCHECK_CONFIGURE_FLAGS=$conf_flags $MAKE distcheck || cat-testlogs.sh + DISTCHECK_CONFIGURE_FLAGS="$conf_flags" $MAKE distcheck || cat-testlogs.sh } -- cgit v1.2.3