summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorDumitru Ceara <dceara@redhat.com>2022-01-24 15:20:28 +0100
committerIlya Maximets <i.maximets@ovn.org>2022-02-15 00:05:56 +0100
commit5f4dfcccba55c2b93e6afbc37df8ba3338fb8f46 (patch)
tree41ed68bc9e5e6d3c58657d95f30ceeb1f3ca67d6 /.ci
parent3ffeb03feeb39f3c245a14c4e96cb94eb7d6ed19 (diff)
downloadopenvswitch-5f4dfcccba55c2b93e6afbc37df8ba3338fb8f46.tar.gz
ci: Fix typo in variable name.
Reported-by: David Marchand <david.marchand@redhat.com> Signed-off-by: Dumitru Ceara <dceara@redhat.com> Acked-by: Paolo Valerio <pvalerio@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/linux-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh
index 8d111b6d7..6cd38ff3e 100755
--- a/.ci/linux-build.sh
+++ b/.ci/linux-build.sh
@@ -246,8 +246,8 @@ if [ "$ASAN" ]; then
export ASAN_OPTIONS='detect_leaks=1'
# -O2 generates few false-positive memory leak reports in test-ovsdb
# application, so lowering optimizations to -O1 here.
- CLFAGS_ASAN="-O1 -fno-omit-frame-pointer -fno-common -fsanitize=address"
- CFLAGS_FOR_OVS="${CFLAGS_FOR_OVS} ${CLFAGS_ASAN}"
+ CFLAGS_ASAN="-O1 -fno-omit-frame-pointer -fno-common -fsanitize=address"
+ CFLAGS_FOR_OVS="${CFLAGS_FOR_OVS} ${CFLAGS_ASAN}"
fi
save_OPTS="${OPTS} $*"