From 31e647f8a2997f63b2836ef81f8ca972075a2734 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 2 Oct 2008 15:44:24 +0000 Subject: [PATCH] Globally set LC_ALL=C to prevent locale issues from breaking tests. Originally committed as revision 15511 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index e6a6b4f7d5..55c7242976 100755 --- a/configure +++ b/configure @@ -7,6 +7,10 @@ # Copyright (c) 2005-2006 Mans Rullgard # +# Prevent locale nonsense from breaking basic text processing. +LC_ALL=C +export LC_ALL + # make sure we are running under a compatible shell # try to make this part work with most shells