From 26ea13b007b5cd0f98b0d0feb8a29f69016fb812 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Beauz=C3=A9e-Luyssen?= Date: Mon, 18 Sep 2017 15:08:47 +0200 Subject: [PATCH] buildVLCKit: Fix xcrun invocation --- buildVLCKit.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildVLCKit.sh b/buildVLCKit.sh index a7405054..7d407aff 100755 --- a/buildVLCKit.sh +++ b/buildVLCKit.sh @@ -143,9 +143,9 @@ spopd # buildLibVLC() { - export CC=`xcrun clang` - export CXX=`xcrun clang++` - export OBJC=`xcrun clang` + export CC=`xcrun -f clang` + export CXX=`xcrun -f clang++` + export OBJC=`xcrun -f clang` args="" if [ "$VERBOSE" = "yes" ]; then -- GitLab