ci: append to CFLAGS, don't overwrite

I think this is why the -Wunused-variable wasn't actually taking effect.

Closes: #794
Approved by: jlebon
This commit is contained in:
Jonathan Lebon 2017-05-25 15:00:15 -04:00 committed by Atomic Bot
parent 9980448464
commit c0f39b8edd

View File

@ -11,7 +11,7 @@ build() {
}
build_default() {
export CFLAGS='-fsanitize=undefined'
export CFLAGS="${CFLAGS:-} -fsanitize=undefined"
build
}