summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/autotools-clang-9.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/autotools-clang-9.yml b/.github/workflows/autotools-clang-9.yml
index e81c10f..c91cb93 100644
--- a/.github/workflows/autotools-clang-9.yml
+++ b/.github/workflows/autotools-clang-9.yml
@@ -16,13 +16,13 @@ jobs:
export ENV DEBIAN_FRONTEND=noninteractive
apt update
apt install mm-common clang-9 make --yes
- export CXX=clang++-9
+ export CC=clang-9 CXX=clang++-9
./autogen.sh --enable-warnings=fatal
make
- name: Test
run: make check
- name: Distcheck
run: |
- # distcheck runs configure again so we need to specify CXX again.
- export CXX=clang++-9
+ # distcheck runs configure again so we need to specify CC and CXX again.
+ export CC=clang-9 CXX=clang++-9
make distcheck