diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/mac-build.yml | 2 | ||||
-rw-r--r-- | .github/workflows/win-build.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 747dbc3..30c16af 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -47,7 +47,7 @@ jobs: working-directory: generic - name: Configure ${{ matrix.cfgopt }} # Note that macOS is always a 64 bit platform - run: ./configure --enable-64bit --enable-dtrace --enable-framework ${CFGOPT} "--prefix=$HOME/install" || (cat config.log && exit 1) + run: ./configure --enable-dtrace --enable-framework ${CFGOPT} "--prefix=$HOME/install" || (cat config.log && exit 1) env: CFLAGS: -arch x86_64 -arch arm64e CFGOPT: ${{ matrix.cfgopt }} diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index 5b1b144..e3c991e 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -64,7 +64,7 @@ jobs: uses: msys2/setup-msys2@v2 with: msystem: MINGW64 - install: git mingw-w64-x86_64-toolchain make zip + install: git mingw-w64-x86_64-toolchain make - name: Checkout uses: actions/checkout@v2 - name: Prepare |