]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/distrib/all/build-osx
enable building just the unicode version, or both unicode and ansi
[wxWidgets.git] / wxPython / distrib / all / build-osx
index 6c53d29d66e2def52b21646aafc0e4b4f0656cca..b31c82c46105c9d759137ec041f753b6f23be5e3 100755 (executable)
@@ -12,12 +12,21 @@ flags=$4
 if [ $skiposx != yes ]; then
     # test if the target machine is online
     if ping -q -c1 -w1 $host > /dev/null; then
-       echo " The $host machine is online, OSX build continuing..."
+       echo "The $host machine is online, OSX build continuing..."
     else
        echo "The $host machine is **OFFLINE**, skipping the OSX build."
        exit 0
     fi
 
+    if [ $chartype == ansi -a $buildansi == no ]; then
+       echo "Skipping ansi-only build host"
+       exit 0
+    fi
+
+    if [ $chartype == both -a $buildansi == no ]; then
+       chartype=unicode
+    fi
+
     echo "Copying source files and build script..."
     ssh root@$host "mkdir -p $OSX_BUILD && rm -rf $OSX_BUILD/* || true"