* [Qemu-devel] [6791] configure sensitive to user locale
@ 2009-03-09 17:36 Blue Swirl
0 siblings, 0 replies; only message in thread
From: Blue Swirl @ 2009-03-09 17:36 UTC (permalink / raw)
To: qemu-devel
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 <andreas.faerber@web.de>
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-09 20:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-09 17:36 [Qemu-devel] [6791] configure sensitive to user locale Blue Swirl
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).