diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2017-07-17 15:22:09 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2017-07-18 11:54:14 +0200 |
commit | 698542cf459e51cd72f7bc46b6979a9d67b33309 (patch) | |
tree | 651e201fabf53841a7390b11d62d3b7e2f71e389 /scripts/launch-c.in | |
parent | b5c0bf1b8d18bb79ce393ac38b2e55a74863071c (diff) | |
download | qtlocation-mapboxgl-698542cf459e51cd72f7bc46b6979a9d67b33309.tar.gz |
[build] make Xcode use the correct compiler when it is installed in a non-standard location
Diffstat (limited to 'scripts/launch-c.in')
-rw-r--r-- | scripts/launch-c.in | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/scripts/launch-c.in b/scripts/launch-c.in index 6c6c9180bc..94555f32aa 100644 --- a/scripts/launch-c.in +++ b/scripts/launch-c.in @@ -1,10 +1,4 @@ #!/bin/sh -# Xcode generator doesn't include the compiler as the -# first argument, Ninja and Makefiles do. Handle both cases. -if [ "$1" = "${CMAKE_C_COMPILER}" ] ; then - shift -fi - export CCACHE_CPP2=true -exec "${C_LAUNCHER}" "${CMAKE_C_COMPILER}" "$@" +exec "@C_LAUNCHER@" "$@" |