summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-06-01 20:33:41 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-06-01 20:33:41 (GMT)
commit36f41a9d27bb374f61306a4fc3eebe3b98012219 (patch)
tree71d4edcc19c5af8b347de139588de2261e2b01f7 /configure
parentda8024bba24cfbc4429a75df2a5fe4e083439a98 (diff)
./configure expects message to be in the C locale, so force that.
/trunk/configure | 6 3 3 0 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 98ba38d..308d9ca 100755
--- a/configure
+++ b/configure
@@ -125,13 +125,13 @@ fi
# If we can't get the revision number, use date
case "${VERSION}" in
*+svn)
- REVISION=$(svnversion)
+ REVISION=$(LC_ALL=C svnversion)
case "${REVISION}" in
exported)
VERSION="${VERSION}:unknown@$(date +%Y%m%d.%H%M%S)";;
*)
- URL=$(LANG=C svn info 2>/dev/null |egrep 'URL: ' |cut -d ' ' -f 2-)
- ROOT=$(LANG=C svn info 2>/dev/null |egrep 'Repository Root: ' |cut -d ' ' -f 3-)
+ URL=$(LC_ALL=C svn info 2>/dev/null |egrep 'URL: ' |cut -d ' ' -f 2-)
+ ROOT=$(LC_ALL=C svn info 2>/dev/null |egrep 'Repository Root: ' |cut -d ' ' -f 3-)
VERSION="${VERSION}:${URL#${ROOT}}@${REVISION}"
;;
esac