]> git.saurik.com Git - wxWidgets.git/commitdiff
post 2.7.1 fixes
authorChris Elliott <biol75@york.ac.uk>
Thu, 12 Oct 2006 19:47:12 +0000 (19:47 +0000)
committerChris Elliott <biol75@york.ac.uk>
Thu, 12 Oct 2006 19:47:12 +0000 (19:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41976 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

distrib/scripts/Bakefiles.release.bkgen
distrib/scripts/build-environ.cfg
distrib/scripts/create_archives.sh

index 993e0dae780781b1345e33822c3d9fc6b719fa4d..9075b0c2704d818ca2fd5400a1fd0ab6e7dab73c 100644 (file)
@@ -2,6 +2,6 @@
 <bakefile-gen>
   <include file="../../build/bakefiles/Bakefiles.bkgen"/>
   <!-- add extra formats to release -->
-  <enable-formats>dmars,dmars_smake,msevc4prj</enable-formats>
+  <enable-formats>gnu,dmars,dmars_smake,msevc4prj</enable-formats>
 </bakefile-gen>
 
index 223de793662603cdd8a8cec2e86a5742318611ed..8669d18af0e6320e1383086b4ecdd68f5ee02f5c 100644 (file)
@@ -17,7 +17,7 @@ DOCDIR=${WX_TEMP_DIR}/wxWidgets/docs/
 CURDATE=`date -I`
 
 # build info
-BUILD_VERSION=2.7.1-rc
+BUILD_VERSION=2.7.2-rc1
 BUILD_TAG=HEAD
 
 
index ca00468b28fa30781bc4b6d2756efdb537c32e5a..09a4971e6494db566f31d0236e2980730d7275d4 100755 (executable)
@@ -114,11 +114,18 @@ doinit()
 dospinport(){
     port=$1
     
-    if [ $port != "all" ]; then
-        portname="`echo $port|tr '[a-z]' '[A-Z]'`"    
-    else
-        portname="Widgets"
-    fi
+    case "$port" in
+       all)
+          portname=Widgets;;
+       base)
+          portname=Base;;
+       motif)
+          portname=Motif;;
+       mac)
+          portname=Mac;;
+       *)
+          portname=echo $port | tr [a-z] [A-Z];;
+    esac
     
     echo "Creating wx$portname distribution..."