inserted missing back quotes around echo lost by previous change

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41977 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-10-12 19:57:23 +00:00
parent 6ff2b4376b
commit c66068835e

View File

@@ -115,16 +115,18 @@ dospinport(){
port=$1
case "$port" in
all)
portname=Widgets;;
base)
portname=Base;;
motif)
portname=Motif;;
mac)
portname=Mac;;
*)
portname=echo $port | tr [a-z] [A-Z];;
all)
portname="Widgets";;
base)
portname="Base";;
motif)
portname="Motif";;
mac)
portname="Mac";;
*)
# for all the others (DFB, GTK, MGL, MSW, X11) just use the
# upper-case version as they are abbreviations
portname=`echo $port | tr '[a-z]' '[A-Z]'`;;
esac
echo "Creating wx$portname distribution..."