From c66068835ecce0a507f3e4aa1e21fa05ffdb5049 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 12 Oct 2006 19:57:23 +0000 Subject: [PATCH] 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 --- distrib/scripts/create_archives.sh | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/distrib/scripts/create_archives.sh b/distrib/scripts/create_archives.sh index 09a4971..b07a064 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..." -- 2.7.4