On Mon, 14 Jul 2008 18:00:37 +0300
Avi Kivity <[EMAIL PROTECTED]> wrote:

> Again, this took longer than I'd like, but the new release is finally 
> out. It's composed mainly of incremental fixes, but important ones.

[...]

I needed to trivially modify configure to be able to build ALSA audio

(via ./configure --audio-drv-list=alsa)

Fix attached.

-- 
Jindrich Makovicka
--- configure.orig	2008-07-10 15:20:48.000000000 +0200
+++ configure	2008-07-15 21:34:07.000000000 +0200
@@ -38,7 +38,8 @@
 }
 
 while [[ "$1" = -* ]]; do
-    opt="$1"; shift
+    optorig="$1"; shift
+    opt=$opt
     arg=
     if [[ "$opt" = *=* ]]; then
 	arg="${opt#*=}"
@@ -70,7 +71,7 @@
 	    usage
 	    ;;
 	*)
-	    qemu_opts="$qemu_opts $opt"
+	    qemu_opts="$qemu_opts $optorig"
 	    ;;
     esac
 done

Reply via email to