]> git.saurik.com Git - wxWidgets.git/commitdiff
minor build tweaks
authorRobin Dunn <robin@alldunn.com>
Thu, 7 Dec 2006 21:03:45 +0000 (21:03 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 7 Dec 2006 21:03:45 +0000 (21:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/distrib/all/build-deb
wxPython/distrib/all/build-environ.cfg
wxPython/distrib/all/build-finalize
wxPython/distrib/all/do-build-deb

index 0686fb28793432dfbd78000bed9eba7dfa3ee209..6bfc3f9315e4f8d23d9ceba16f457d3ca476161d 100755 (executable)
@@ -23,7 +23,7 @@ function TestOnline {
 
 
 if [ $skipdeb != yes ]; then
-    # We use a chroot environment on th elocal machine for the debian
+    # We use a chroot environment on the build machine for the debian
     # builds, so this build is pretty simple.  Just copy the tarball
     # and a build script to /tmp, and then run do-build-deb in the
     # chroot.
index df59f673eac201860bfd591d493fd169ad7cf5e2..e506f31c6c21c875a2960861c1a480e4fefde52d 100644 (file)
@@ -24,15 +24,17 @@ LINUX_BUILD = /tmp/BUILD
 
 # Upload server locations
 #UPLOAD_HOST = starship.python.net
+#UPLOAD_USER = robind
 #UPLOAD_PREVIEW_ROOT = /home/crew/robind/public_html/wxPython/preview
 #UPLOAD_RELEASE_ROOT = /home/crew/robind/public_html/wxPython/release
 #UPLOAD_METHOD = ssh
 #UPLOAD_URL_ROOT = http://starship.python.net/crew/robind/wxPython/
 
 UPLOAD_HOST = wxpython.wxcommunity.com
-UPLOAD_PREVIEW_ROOT = /httpdocs/preview
-UPLOAD_RELEASE_ROOT = /httpdocs/release
-UPLOAD_METHOD = ftp
+UPLOAD_USER = wxpython
+UPLOAD_PREVIEW_ROOT = /var/www/vhosts/wxcommunity.com/subdomains/wxpython/httpdocs/preview
+UPLOAD_RELEASE_ROOT = /var/www/vhosts/wxcommunity.com/subdomains/wxpython/httpdocs/release
+UPLOAD_METHOD = ssh
 UPLOAD_URL_ROOT = http://wxPython.wxcommunity.com/
 
 
index ba10bdfdc1dd80c0a1ced86383fbd009d5a1eaeb..5b56d1edeef94f24a2042a96285a92d808f043e2 100755 (executable)
@@ -25,8 +25,8 @@ if [ $KIND = daily ]; then
        destdir=$UPLOAD_PREVIEW_ROOT/$DAILY
        echo "Copying to $UPLOAD_HOST at $destdir..."
        if [ $UPLOAD_METHOD = ssh ]; then
-           ssh $UPLOAD_HOST "mkdir -p $destdir"
-           scp -pr $STAGING_DIR/* $UPLOAD_HOST:/$destdir
+           ssh $UPLOAD_USER@$UPLOAD_HOST "mkdir -p $destdir"
+           scp -pr $STAGING_DIR/* $UPLOAD_USER@$UPLOAD_HOST:/$destdir
        fi
        if [ $UPLOAD_METHOD = ftp ]; then
            lftp -c "open $UPLOAD_HOST; mkdir $destdir"
@@ -79,8 +79,8 @@ if [ $KIND = release ]; then
        echo "Copying to $UPLOAD_HOST..."
        destdir=$UPLOAD_RELEASE_ROOT/$VERSION
        if [ $UPLOAD_METHOD = ssh ]; then
-           ssh $UPLOAD_HOST "mkdir -p $destdir"
-           scp -pr $STAGING_DIR/* $UPLOAD_HOST:/$destdir
+           ssh $UPLOAD_USER@$UPLOAD_HOST "mkdir -p $destdir"
+           scp -pr $STAGING_DIR/* $UPLOAD_USER@$UPLOAD_HOST:/$destdir
        fi
        if [ $UPLOAD_METHOD = ftp ]; then
            lftp -c "open $UPLOAD_HOST; mkdir $destdir"
index 6c9c37058dc3e05282a9dcce7d037c02c3c10e42..329f599c99612c31bfa7a76d5926b0fb50b4c8ff 100755 (executable)
@@ -2,7 +2,7 @@
 # ---------------------------------------------------------------------------
 
 set -o errexit
-set -o xtrace
+#set -o xtrace
 
 echo "-=-=-=-  Hello from $HOSTNAME  -=-=-=-"