Commit d807b856 authored by Gleb Pinigin's avatar Gleb Pinigin Committed by Jean-Baptiste Kempf

ios build: fix option to specify current sdk version

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 241b81a7
......@@ -13,7 +13,7 @@ cat << EOF
usage: $0 [-s] [-k sdk]
OPTIONS
-k <sdk> Specify which sdk to use ('xcodebuild -showsdks', current: ${SDK})
-k <sdk version> Specify which sdk to use ('xcodebuild -showsdks', current: ${SDK_VERSION})
-s Build for simulator
-a <arch> Specify which arch to use (current: ${ARCH})
EOF
......@@ -48,10 +48,10 @@ do
;;
s)
PLATFORM=Simulator
SDK=${SDK_MIN}
SDK_VERSION=${SDK_MIN}
;;
k)
SDK=$OPTARG
SDK_VERSION=$OPTARG
;;
a)
ARCH=$OPTARG
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment