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 port=$1
case "$port" in case "$port" in
all) all)
portname=Widgets;; portname="Widgets";;
base) base)
portname=Base;; portname="Base";;
motif) motif)
portname=Motif;; portname="Motif";;
mac) mac)
portname=Mac;; portname="Mac";;
*) *)
portname=echo $port | tr [a-z] [A-Z];; # 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 esac
echo "Creating wx$portname distribution..." echo "Creating wx$portname distribution..."