qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [4798] Fix shell quoting.
@ 2008-06-29  1:00 Paul Brook
  0 siblings, 0 replies; only message in thread
From: Paul Brook @ 2008-06-29  1:00 UTC (permalink / raw)
  To: qemu-devel

Revision: 4798
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4798
Author:   pbrook
Date:     2008-06-29 01:00:34 +0000 (Sun, 29 Jun 2008)

Log Message:
-----------
Fix shell quoting.

Modified Paths:
--------------
    trunk/configure

Modified: trunk/configure
===================================================================
--- trunk/configure	2008-06-28 19:13:06 UTC (rev 4797)
+++ trunk/configure	2008-06-29 01:00:34 UTC (rev 4798)
@@ -1033,14 +1033,14 @@
   echo "#define CONFIG_SLIRP 1" >> $config_h
 fi
 for card in $audio_card_list; do
-    def=CONFIG_`echo $card | tr [:lower:] [:upper:]`
+    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
     echo "$def=yes" >> $config_mak
     echo "#define $def 1" >> $config_h
 done
 echo "#define AUDIO_DRIVERS \\" >> $config_h
 for drv in $audio_drv_list; do
     echo "    &${drv}_audio_driver, \\" >>$config_h
-    def=CONFIG_`echo $drv | tr [:lower:] [:upper:]`
+    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
     echo "$def=yes" >> $config_mak
     if test "$drv" == "fmod"; then
         echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-06-29  1:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-29  1:00 [Qemu-devel] [4798] Fix shell quoting Paul Brook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).