From b7d0667a7445f2590ef4cf606efdb435c32cf16a Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 6 Jul 2021 14:15:18 +0200 Subject: [PATCH] ci: fix typo 'CCFLAGs' to 'CFLAGS' (#11298) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f02e716ff..6f1aea50ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -221,8 +221,8 @@ jobs: unset RUSTC_FORCE_INCREMENTAL # C build configuration. - export CC=clang-12 # Compile c source files with clang. - export CCFLAGs=-flto=thin # Tell clang to produce llvm bitcode. + export CC=clang-12 # Compile c source files with clang. + export CFLAGS=-flto=thin # Tell clang to produce llvm bitcode. # Miscellaneous flags. export CARGO_TERM_COLOR=always