mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 04:27:39 +03:00
Allow for homebrew prefix location to handle both x64 and arm macs (#8593)
Allow for Homebrew prefix location to handle both x64 and arm macs
This commit is contained in:
parent
56307e6cad
commit
f7735afcd6
3 changed files with 10 additions and 3 deletions
|
@ -930,6 +930,13 @@ build() {
|
|||
# linuxdeploy requires /usr as install prefix
|
||||
INSTALL_PREFIX="/usr"
|
||||
fi
|
||||
if [ -n "$OS_MACOS" ]; then
|
||||
type brew &> /dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
INSTALL_PREFIX=$(brew --prefix)
|
||||
fi
|
||||
fi
|
||||
|
||||
# Do not build tests cases
|
||||
CMAKE_OPTIONS="${CMAKE_OPTIONS} -DWITH_TESTS=OFF"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue