diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2eba960e..78a28160 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -168,7 +168,8 @@ jobs: git clone --depth 1 --branch gpgme-1.18.0 git://git.gnupg.org/gpgme.git ${{github.workspace}}/third_party/gpgme cd ${{github.workspace}}/third_party/gpgme ./autogen.sh - CFLAGS="-g -O2 -w -mms-bitfields"./configure --enable-maintainer-mode --enable-languages=cpp --disable-gpg-test && make -j4 + export CFLAGS="-g -O2 -w -mms-bitfields" + ./configure --enable-maintainer-mode --enable-languages=cpp --disable-gpg-test && make -j4 make install cd ${{github.workspace}} if: matrix.os == 'windows-2019' |