Index: autobuild/scripts/updatepackage
===================================================================
--- autobuild/scripts/updatepackage	(revision 1168)
+++ autobuild/scripts/updatepackage	(revision 1220)
@@ -13,5 +13,5 @@
 		popd >/dev/null
 		mv "$file.tmp" "$file"
-		md5sum "$file" | sed 's#/.*/##' > "$file.md5.txt"
+		md5sum "$file" | LANG=C sed 's#/.*/##' > "$file.md5.txt"
 	fi
 }
@@ -48,9 +48,9 @@
 		zip tmp.zip $(find "${files[@]}") || die
 		mv tmp.zip "$binaryPackagePath"
-		md5sum "$binaryPackagePath" > "$binaryPackagePath.md5.txt"
+		md5sum "$binaryPackagePath" | LANG=C sed 's#/.*/##' > "$binaryPackagePath.md5.txt"
 
 		zip tmp.zip "Release${_TS}/php_$ext.pdb"
 		mv tmp.zip "$debugPackagePath"
-		md5sum "$debugPackagePath" > "$debugPackagePath.md5.txt"
+		md5sum "$debugPackagePath" | LANG=C sed 's#/.*/##' > "$debugPackagePath.md5.txt"
 		popd >/dev/null
 	fi
