diff options
author | Thiago Marcos P. Santos <thiago@mapbox.com> | 2017-01-06 00:50:42 -0200 |
---|---|---|
committer | Thiago Marcos P. Santos <tmpsantos@gmail.com> | 2017-01-09 16:41:59 -0200 |
commit | 9c62af211471969a9120ea41b08eecc67da2e1d7 (patch) | |
tree | 4e45ba001a3bc2086d81575e05c29897a13cef0b /platform/qt | |
parent | def6b63cf7b960884f51b243f4a3fc9d0ab39c68 (diff) | |
download | qtlocation-mapboxgl-9c62af211471969a9120ea41b08eecc67da2e1d7.tar.gz |
[Qt] Removed unused file
Leftover from the gyp -> cmake migration.
Diffstat (limited to 'platform/qt')
-rwxr-xr-x | platform/qt/scripts/toolchain.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/platform/qt/scripts/toolchain.sh b/platform/qt/scripts/toolchain.sh deleted file mode 100755 index bb08e0b010..0000000000 --- a/platform/qt/scripts/toolchain.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env bash - -set -e -set -o pipefail - -if [ -z ${MASON_SYSROOT:-} ]; then - exit 0 -fi - -export PATH="`pwd`/.mason:${PATH}" -export MASON_DIR="`pwd`/.mason" - -export PATH=`mason env PATH` - -echo CXX=\"`which $(mason env CXX)`\" -echo CC=\"`which $(mason env CC)`\" -echo LD=\"`which $(mason env LD)`\" -echo LINK=\"`which $(mason env CXX)`\" -echo AR=\"`which $(mason env AR)`\" -echo RANLIB=\"`which $(mason env RANLIB)`\" -echo STRIP=\"`which $(mason env STRIP)`\" |