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 ...@@ -13,7 +13,7 @@ cat << EOF
usage: $0 [-s] [-k sdk] usage: $0 [-s] [-k sdk]
OPTIONS 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 -s Build for simulator
-a <arch> Specify which arch to use (current: ${ARCH}) -a <arch> Specify which arch to use (current: ${ARCH})
EOF EOF
...@@ -48,10 +48,10 @@ do ...@@ -48,10 +48,10 @@ do
;; ;;
s) s)
PLATFORM=Simulator PLATFORM=Simulator
SDK=${SDK_MIN} SDK_VERSION=${SDK_MIN}
;; ;;
k) k)
SDK=$OPTARG SDK_VERSION=$OPTARG
;; ;;
a) a)
ARCH=$OPTARG 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