mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-25 22:27:49 +08:00
brew install p7zip isn't working anymore with macOS 10.13 and 10.12. Let's use --build-from-source parameter with brew installation Pick-to: 5.12.7 Task-number: QTQAINFRA-4128 Change-Id: Ib1a2db1cd3176955cca450e5ebe0d0fc1bee3aa4 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
8 lines
123 B
Bash
Executable File
8 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Install 7z to be used from command line
|
|
|
|
set -ex
|
|
|
|
brew update
|
|
brew install --build-from-source p7zip
|