From 6f545a36bdc98889a06fa08b9a4418294f82d545 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 30 May 2020 02:27:00 +0100 Subject: [PATCH] Fix for macos-old build Signed-off-by: falkTX --- .travis/install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis/install.sh b/.travis/install.sh index e5c5ff7..122f1c3 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -12,10 +12,14 @@ if [ "${TARGET}" = "macos-old" ]; then if [ ! -f 'apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb' ]; then wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb' fi + if [ ! -f 'apple-x86-odcctools_758.159-0kxstudio2_amd64.deb' ]; then + wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-x86-odcctools_758.159-0kxstudio2_amd64.deb' + fi if [ ! -f 'apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb' ]; then wget -c 'https://launchpad.net/~kxstudio-debian/+archive/ubuntu/toolchain/+files/apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb' fi sudo dpkg -i 'apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb' + sudo dpkg -i 'apple-x86-odcctools_758.159-0kxstudio2_amd64.deb' sudo dpkg -i 'apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb' popd