aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJere Leppänen <jere.leppanen@nokia.com>2021-05-27 20:19:17 +0300
committerPetri Savolainen <petri.savolainen@nokia.com>2021-05-31 14:23:46 +0300
commite66fb6717a81265bd1f00fb70475a36754c43477 (patch)
treec7dff64b5cdb58f908a5e47d99489ca32a209f99 /scripts
parent8d3851e136aa38336a550cd6e9696bf225a75926 (diff)
ci: fix misspelled CFLAGS in coverage.sh
Fix misspelled CFLAGS in coverage.sh. Signed-off-by: Jere Leppänen <jere.leppanen@nokia.com> Reviewed-by: Matias Elo <matias.elo@nokia.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/coverage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/coverage.sh b/scripts/ci/coverage.sh
index e96ab7b14..72b9f3d9e 100755
--- a/scripts/ci/coverage.sh
+++ b/scripts/ci/coverage.sh
@@ -8,7 +8,7 @@ fi
cd "$(dirname "$0")"/../..
./bootstrap
./configure \
- CFLAGS="-O0 -coverage $CLFAGS" CXXFLAGS="-O0 -coverage $CXXFLAGS" LDFLAGS="--coverage $LDFLAGS" \
+ CFLAGS="-O0 -coverage $CFLAGS" CXXFLAGS="-O0 -coverage $CXXFLAGS" LDFLAGS="--coverage $LDFLAGS" \
--enable-debug=full --enable-helper-linux --enable-dpdk
export CCACHE_DISABLE=1
make -j $(nproc)