aboutsummaryrefslogtreecommitdiffstats
path: root/build/build.xml
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-02-04 12:32:25 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-02-04 12:32:25 +0100
commitaae4d4c90d447754dbf1d10b09c29f38b96a650a (patch)
tree865e4ae11d379ec7af19329ae79c7d1876618833 /build/build.xml
parent39b9274a9404647632a5c210c4331377b5ce157b (diff)
downloadforums-aae4d4c90d447754dbf1d10b09c29f38b96a650a.tar
forums-aae4d4c90d447754dbf1d10b09c29f38b96a650a.tar.gz
forums-aae4d4c90d447754dbf1d10b09c29f38b96a650a.tar.bz2
forums-aae4d4c90d447754dbf1d10b09c29f38b96a650a.tar.xz
forums-aae4d4c90d447754dbf1d10b09c29f38b96a650a.zip
[ticket/12162] Set language to C before running diff to ensure its english
PHPBB3-12162
Diffstat (limited to 'build/build.xml')
-rw-r--r--build/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml
index e82e61a18e..83ddcd29c4 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -105,7 +105,7 @@
<property name="dir" value="build/old_versions/release-${version}" />
</phingcall>
- <exec dir="build/old_versions" command="diff -crNEBwd release-${version} release-${newversion} >
+ <exec dir="build/old_versions" command="LC_ALL=C diff -crNEBwd release-${version} release-${newversion} >
../new_version/patches/phpBB-${version}_to_${newversion}.patch" escape="false" />
</target>