Skip to content

Commit

Permalink
Merge pull request #30 from pspdev/fix-macos-build
Browse files Browse the repository at this point in the history
Fix MacOS build
  • Loading branch information
fjtrujy authored Jun 8, 2024
2 parents dde53af + 8036d6e commit 670a103
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ jobs:
- name: Compile Tools
run: |
export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"
export PATH="/usr/local/opt/libtool/libexec/gnubin:$PATH"
export PKG_CONFIG_PATH="/usr/local/opt/libarchive/lib/pkgconfig:/usr/local/opt/openssl@3/lib/pkgconfig"
export PATH="$(brew --prefix gnu-sed)/libexec/gnubin:$PATH" # This really is only needed for macOS
export PATH="$(brew --prefix libtool)/libexec/gnubin:$PATH" # This really is only needed for macOS
export PKG_CONFIG_PATH="$(brew --prefix libarchive)/lib/pkgconfig:$(brew --prefix openssl)/lib/pkgconfig" #This really is only needed for macOS
export PSPDEV=$PWD/pspdev
./pacman.sh
export PATH=$PATH:$PSPDEV/bin
Expand Down

0 comments on commit 670a103

Please sign in to comment.