summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2021-07-06 14:15:18 +0200
committerBert Belder <bertbelder@gmail.com>2021-07-06 14:43:36 +0200
commitb7d0667a7445f2590ef4cf606efdb435c32cf16a (patch)
tree69b8f62cb0c64fa727966189f6e42746bb570bfd
parent1aac47720b8dad6826d59263f8e825c221f2a328 (diff)
ci: fix typo 'CCFLAGs' to 'CFLAGS' (#11298)
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2f02e716f..6f1aea50b 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