summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ghci.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/ghci.yml b/.github/workflows/ghci.yml
index d9e84bc..47a8497 100644
--- a/.github/workflows/ghci.yml
+++ b/.github/workflows/ghci.yml
@@ -130,11 +130,13 @@ jobs:
> /tmp/windowsapp.specs
- name: configure
- env:
- CC: "${{ matrix.cc }}\
+ run: |
+ export CC="${{ matrix.cc }}\
${{ matrix.extra_cflags && ' ' }}${{ matrix.extra_cflags }}"
- LD: "${{ matrix.ld }}"
- run: ./autogen.sh && ./configure
+ export LD="${{ matrix.ld }}"
+
+ ./autogen.sh
+ ./configure
- name: compile
if: matrix.do_distc != 'yes'