Bläddra i källkod

compileAndBuildVLCKit: replace stray $arch by $FARCH

$arch was an artifact from previous version of the script.
Alexandre Janniaux 5 år sedan
förälder
incheckning
4c8b07598e
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      compileAndBuildVLCKit.sh

+ 2 - 2
compileAndBuildVLCKit.sh

@@ -457,7 +457,7 @@ if [ "$TVOS" = "yes" ]; then
         buildxcodeproj MobileVLCKit "TVVLCKit" ${platform}
         lipo_libs="$lipo_libs ${CONFIGURATION}-appletvos/libTVVLCKit.a"
     fi
-    if [ "$FARCH" = "all" ] || (is_simulator_arch $arch);then
+    if [ "$FARCH" = "all" ] || (is_simulator_arch $FARCH);then
         platform="appletvsimulator"
         buildxcodeproj MobileVLCKit "TVVLCKit" ${platform}
         lipo_libs="$lipo_libs ${CONFIGURATION}-appletvsimulator/libTVVLCKit.a"
@@ -485,7 +485,7 @@ if [ "$IOS" = "yes" ]; then
         buildxcodeproj MobileVLCKit "MobileVLCKit" ${platform}
         lipo_libs="$lipo_libs ${CONFIGURATION}-iphoneos/libMobileVLCKit.a"
     fi
-    if [ "$FARCH" = "all" ] || (is_simulator_arch $arch);then
+    if [ "$FARCH" = "all" ] || (is_simulator_arch $FARCH);then
         platform="iphonesimulator"
         buildxcodeproj MobileVLCKit "MobileVLCKit" ${platform}
         lipo_libs="$lipo_libs ${CONFIGURATION}-iphonesimulator/libMobileVLCKit.a"