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

@@ -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..."