X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6ff2b4376b0eb968e439dab316e892c6f44d1f2a..b0a8df83f52a7561ad77f2175b8a827991c4681d:/distrib/scripts/create_archives.sh diff --git a/distrib/scripts/create_archives.sh b/distrib/scripts/create_archives.sh index 09a4971e64..b07a0640d5 100755 --- a/distrib/scripts/create_archives.sh +++ b/distrib/scripts/create_archives.sh @@ -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..."