aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-03-05 20:51:49 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2018-03-13 00:00:30 +0000
commitb10ec0be5ffcd8759bb8b1461549a7eaf570bd9b (patch)
treebdc8424b4e56d70ae955939b980c967ae2692cbe
parent09ecbb76745b4189f07e339131c1df4f46a03531 (diff)
jenkins_amd64.sh: use --enable-werror configure flag, not CFLAGS
Note that the jenkins_arm.sh passes various CFLAGS and potentially overwrites ./configure internal CFLAGS like that. I'm staying out of that for now. Change-Id: I81b50c39cd6e908c4c95651829b679425de87a28
-rwxr-xr-xcontrib/jenkins_amd64.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/jenkins_amd64.sh b/contrib/jenkins_amd64.sh
index ff1cfdc3..c3af378c 100755
--- a/contrib/jenkins_amd64.sh
+++ b/contrib/jenkins_amd64.sh
@@ -15,7 +15,7 @@ build() {
prep_build "$src_dir" "$build_dir"
- "$src_dir"/configure --disable-silent-rules --enable-static $ENABLE_SANITIZE CFLAGS="-Werror" CPPFLAGS="-Werror"
+ "$src_dir"/configure --disable-silent-rules --enable-static $ENABLE_SANITIZE --enable-werror
run_make
}