qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] bug in configure script of kqemu


From: Tito
Subject: [Qemu-devel] bug in configure script of kqemu
Date: Fri, 8 Dec 2006 14:33:06 +0100
User-agent: KMail/1.9.1

hi,
i've  spotted a little problem with the configure script in 
kqemu-1.3.0pre9.tar.gz:

Source path       /root/Desktop/qemu/kqemu-1.3.0pre9
C compiler        gcc
Host C compiler   gcc
make              make
host CPU          i386
./configure: line 344: test: =: unary operator expected


this is fixed for me by this little patch:

--- configure_orig      2006-12-08 13:49:31.000000000 +0100
+++ configure   2006-12-08 13:50:03.000000000 +0100
@@ -341,7 +341,7 @@
 fi
 if test $linux = "yes" ; then
   echo "KERNEL_PATH=$kernel_path" >> $config_mak
-  if test $kbuild26 = "yes" ; then
+  if test "$kbuild26" = "yes" ; then
     echo "CONFIG_KBUILD26=yes" >> $config_mak
   fi
 fi


Ciao,
Tito





reply via email to

[Prev in Thread] Current Thread [Next in Thread]