diff options
author | jostster <jostster@users.noreply.github.com> | 2016-10-26 08:10:38 -0700 |
---|---|---|
committer | HoĆ V. DINH <dinh.viet.hoa@gmail.com> | 2016-10-26 08:10:38 -0700 |
commit | 7ae8ba6c0cefb13080693c6057e48504423dfe2d (patch) | |
tree | 34bfb31c002011aeea6a6a5eeb560dd9941ff285 /scripts | |
parent | efce413258a838818a39a12f0f86d563c8488468 (diff) |
Fix for issue #1537 (#1538)
Use xcodebuild.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/include.sh/build-dep-cocoapod.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/include.sh/build-dep-cocoapod.sh b/scripts/include.sh/build-dep-cocoapod.sh index 277290f8..952fa3c5 100755 --- a/scripts/include.sh/build-dep-cocoapod.sh +++ b/scripts/include.sh/build-dep-cocoapod.sh @@ -174,7 +174,7 @@ build_git_osx() cd "$TOPDIR/build-mac" - xctool -project "$xcode_project" -sdk macosx$sdk -scheme "$xcode_target" -configuration Release ARCHS="$archs" SYMROOT="$tmpdir/bin" OBJROOT="$tmpdir/obj" MACOSX_DEPLOYMENT_TARGET="$sdkminversion" + xcodebuild -project "$xcode_project" -sdk macosx$sdk -scheme "$xcode_target" -configuration Release ARCHS="$archs" SYMROOT="$tmpdir/bin" OBJROOT="$tmpdir/obj" MACOSX_DEPLOYMENT_TARGET="$sdkminversion" if test x$? != x0 ; then echo failed exit 1 |