From c81516e9430a240b455b098e54bda9810a42f112 Mon Sep 17 00:00:00 2001 From: Cosmin Truta Date: Sat, 8 Jul 2023 23:46:53 +0300 Subject: [PATCH] ci: Fix bad copy pasta in ci_verify_configure.sh --- ci/ci_verify_configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/ci_verify_configure.sh b/ci/ci_verify_configure.sh index d4690e396..a85794118 100755 --- a/ci/ci_verify_configure.sh +++ b/ci/ci_verify_configure.sh @@ -88,7 +88,7 @@ function ci_build { [[ $CI_CPP_FLAGS ]] && ci_spawn export CPPFLAGS="$CI_CPP_FLAGS" [[ $CI_AR ]] && ci_spawn export AR="$CI_AR" [[ $CI_RANLIB ]] && ci_spawn export RANLIB="$CI_RANLIB" - [[ $CI_LD ]] && ci_spawn export CPP="$CI_LD" + [[ $CI_LD ]] && ci_spawn export LD="$CI_LD" [[ $CI_LD_FLAGS ]] && ci_spawn export LDFLAGS="$CI_LD_FLAGS" [[ $CI_SANITIZERS ]] && { ci_spawn export CFLAGS="-fsanitize=$CI_SANITIZERS ${CFLAGS:-"-O2"}"