]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/scripts/build-linux.sh
Remove all obsolete release-generation scripts.
[wxWidgets.git] / distrib / scripts / build-linux.sh
diff --git a/distrib/scripts/build-linux.sh b/distrib/scripts/build-linux.sh
deleted file mode 100755 (executable)
index a5b8796..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-#----------------------------------------------------------------------
-
-set -o errexit
-
-if [ $skiplinux != yes ]; then
-    # test if the target machine is online
-    #if ping -q -c1 $WIN_HOST > /dev/null; then
-       #echo " The $WIN_HOST machine is online, Windows build continuing..."
-    #else
-       #echo "The $WIN_HOST machine is **OFFLINE**, skipping the Windows build."
-       #exit 0
-    #fi
-
-    echo "Copying source file and build script..."
-    scp -r $STAGING_DIR/* $LINUX_HOST:$LINUX_BUILD
-    
-     echo "Untarring dist on $LINUX_HOST..."
-     wxtarball=$LINUX_BUILD/wxWidgets-$BUILD_VERSION.tar.gz
-     cmd="tar xzvf"
-     ssh $LINUX_HOST "cd $LINUX_BUILD && $cmd $wxtarball"
-     
-     echo "Running build script on $LINUX_HOST..."
-     wxdir=$LINUX_BUILD/wxWidgets
-     cmd="./distrib/scripts/unix/maketarballs $wxdir $wxdir/deliver $BUILD_VERSION --wxgtk --wxmotif --wxx11 --wxbase --wxmgl --silent"
-     ssh $LINUX_HOST "cd $wxdir && chmod +x distrib/scripts/unix/maketarballs && $cmd"
-
-     echo "Fetching the results..."
-     scp "$LINUX_HOST:$wxdir/deliver/*.tar.gz "  $DIST_DIR
-     scp "$LINUX_HOST:$wxdir/deliver/*.tar.bz2 "  $DIST_DIR
-
-     echo "Done!"
-fi
\ No newline at end of file