diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-12-05 14:37:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-12-05 14:37:14 (GMT) |
commit | 5f4f2011fc016df186b9b74f45d67b53d139fb2f (patch) | |
tree | 0a34807d52dbf7486b45ae66fc7b9c995aeec03e /.github | |
parent | 9a7e0fc9b293838d4e19651df1a62b195ae2f04b (diff) | |
download | tk-5f4f2011fc016df186b9b74f45d67b53d139fb2f.zip tk-5f4f2011fc016df186b9b74f45d67b53d139fb2f.tar.gz tk-5f4f2011fc016df186b9b74f45d67b53d139fb2f.tar.bz2 |
Use '--disable-zipfs' on MacOS, since we are not using 'macher'
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mac-build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml index 37187e0..84db034 100644 --- a/.github/workflows/mac-build.yml +++ b/.github/workflows/mac-build.yml @@ -90,7 +90,7 @@ jobs: working-directory: . - name: Build Tcl run: | - ./configure $CFGOPT "--prefix=$HOME/install dir" || { + ./configure $CFGOPT --disable-zipfs "--prefix=$HOME/install dir" || { cat config.log echo "::error::Failure during Tcl Configure" exit 1 @@ -108,7 +108,7 @@ jobs: CFGOPT: --enable-symbols=${{ matrix.symbols }} - name: Configure (symbols=${{ matrix.symbols }} ${{matrix.options }}) run: | - ./configure $CFGOPT "--prefix=$HOME/install dir" --disable-xft || { + ./configure $CFGOPT --disable-zipfs "--prefix=$HOME/install dir" --disable-xft || { cat config.log echo "::error::Failure during Configure" exit 1 |