summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorFrederik Pasch2012-01-16 13:54:57 +0100
committerPeter Korsgaard2012-01-16 13:54:57 +0100
commit4861aed1f1fccd20bf092127b255562eaaf183c1 (patch)
tree6c8d197fba1a42d63be68b4a782d32aaed4f8681 /support
parentsane-backends: make libusb optional, add optional jpeg, tiff, avahi and snmp ... (diff)
downloadbuildroot-4861aed1f1fccd20bf092127b255562eaaf183c1.tar.gz
buildroot-4861aed1f1fccd20bf092127b255562eaaf183c1.tar.xz
buildroot-4861aed1f1fccd20bf092127b255562eaaf183c1.zip
setlocalversion: fix i18n issue with svn
Closes #4700 Signed-off-by: Frederik Pasch <fpasch@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'support')
-rwxr-xr-xsupport/scripts/setlocalversion4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/scripts/setlocalversion b/support/scripts/setlocalversion
index 8d6fe909f..a6edd7194 100755
--- a/support/scripts/setlocalversion
+++ b/support/scripts/setlocalversion
@@ -56,9 +56,9 @@ if hgid=`hg id 2>/dev/null`; then
fi
# Check for svn and a svn repo.
-if rev=`LANG=C svn info 2>/dev/null | grep '^Last Changed Rev'`; then
+if rev=`LC_ALL=C svn info 2>/dev/null | grep '^Last Changed Rev'`; then
rev=`echo $rev | awk '{print $NF}'`
- changes=`LANG=C svn status 2>/dev/null | grep '^[AMD]' | wc -l`
+ changes=`LC_ALL=C svn status 2>/dev/null | grep '^[AMD]' | wc -l`
# Are there uncommitted changes?
if [ $changes != 0 ]; then