From: <sv...@op...> - 2024-07-31 09:54:26
|
Author: manx Date: Wed Jul 31 11:54:14 2024 New Revision: 21313 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21313 Log: [Fix] build: CI: GitHub: macOS: Install libtool. Modified: trunk/OpenMPT/.github/workflows/macOS-Autotools.yml trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Modified: trunk/OpenMPT/.github/workflows/macOS-Autotools.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Autotools.yml Wed Jul 31 11:53:05 2024 (r21312) +++ trunk/OpenMPT/.github/workflows/macOS-Autotools.yml Wed Jul 31 11:54:14 2024 (r21313) @@ -33,7 +33,7 @@ if: ${{ matrix.host == 'macos-12' || matrix.host == 'macos-13' }} run: brew unlink python@3.11 && brew unlink python@3.12 && brew link --overwrite python@3.11 && brew link --overwrite python@3.12 - name: install dependencies - run: brew update && brew upgrade && brew install p7zip help2man doxygen autoconf autoconf-archive automake mpg123 libogg libvorbis portaudio flac libsndfile sdl2 + run: brew update && brew upgrade && brew install p7zip help2man doxygen autoconf autoconf-archive automake libtool mpg123 libogg libvorbis portaudio flac libsndfile sdl2 - name: selecting Xcode version run: sudo xcode-select --switch /Applications/Xcode_${{matrix.compiler}}.app - name: setup parallel make Modified: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Wed Jul 31 11:53:05 2024 (r21312) +++ trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Wed Jul 31 11:54:14 2024 (r21313) @@ -73,7 +73,7 @@ if: ${{ matrix.host == 'macos-12' || matrix.host == 'macos-13' }} run: brew unlink python@3.11 && brew unlink python@3.12 && brew link --overwrite python@3.11 && brew link --overwrite python@3.12 - name: install dependencies - run: brew update && brew upgrade && brew install p7zip help2man doxygen autoconf autoconf-archive automake mpg123 libogg libvorbis portaudio flac libsndfile sdl2 + run: brew update && brew upgrade && brew install p7zip help2man doxygen autoconf autoconf-archive automake libtool mpg123 libogg libvorbis portaudio flac libsndfile sdl2 - name: selecting Xcode version run: sudo xcode-select --switch /Applications/Xcode_${{matrix.compiler}}.app - name: setup parallel make |