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:
parent
19fea3417d
commit
6ff2b4376b
3 changed files with 14 additions and 7 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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..."
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue