post 2.7.1 fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41976 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Chris Elliott
2006-10-12 19:47:12 +00:00
parent 19fea3417d
commit 6ff2b4376b
3 changed files with 14 additions and 7 deletions

View File

@@ -2,6 +2,6 @@
<bakefile-gen> <bakefile-gen>
<include file="../../build/bakefiles/Bakefiles.bkgen"/> <include file="../../build/bakefiles/Bakefiles.bkgen"/>
<!-- add extra formats to release --> <!-- add extra formats to release -->
<enable-formats>dmars,dmars_smake,msevc4prj</enable-formats> <enable-formats>gnu,dmars,dmars_smake,msevc4prj</enable-formats>
</bakefile-gen> </bakefile-gen>

View File

@@ -17,7 +17,7 @@ DOCDIR=${WX_TEMP_DIR}/wxWidgets/docs/
CURDATE=`date -I` CURDATE=`date -I`
# build info # build info
BUILD_VERSION=2.7.1-rc BUILD_VERSION=2.7.2-rc1
BUILD_TAG=HEAD BUILD_TAG=HEAD

View File

@@ -114,11 +114,18 @@ doinit()
dospinport(){ dospinport(){
port=$1 port=$1
if [ $port != "all" ]; then case "$port" in
portname="`echo $port|tr '[a-z]' '[A-Z]'`" all)
else portname=Widgets;;
portname="Widgets" base)
fi portname=Base;;
motif)
portname=Motif;;
mac)
portname=Mac;;
*)
portname=echo $port | tr [a-z] [A-Z];;
esac
echo "Creating wx$portname distribution..." echo "Creating wx$portname distribution..."