qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [6791] configure sensitive to user locale


From: Blue Swirl
Subject: [Qemu-devel] [6791] configure sensitive to user locale
Date: Mon, 09 Mar 2009 17:36:51 +0000

Revision: 6791
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6791
Author:   blueswir1
Date:     2009-03-09 17:36:50 +0000 (Mon, 09 Mar 2009)
Log Message:
-----------
configure sensitive to user locale

On German Fedora 9, no KVM errors are displayed.
This is because configure greps for "error:", which is locale-sensitive.

Use LANG=C for configure to find and display errors as expected.

Signed-off-by: Andreas Faerber <address@hidden>

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

Modified: trunk/configure
===================================================================
--- trunk/configure     2009-03-09 06:27:24 UTC (rev 6790)
+++ trunk/configure     2009-03-09 17:36:50 UTC (rev 6791)
@@ -1061,7 +1061,7 @@
     kvm="no";
     if [ -x "`which awk 2>/dev/null`" ] && \
        [ -x "`which grep 2>/dev/null`" ]; then
-      kvmerr=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
+      kvmerr=`LANG=C $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 
2>&1 \
        | grep "error: " \
        | awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
       if test "$kvmerr" != "" ; then





reply via email to

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