Use LC_ALL to unfrenchify (ROOT-6017).

This commit is contained in:
Axel Naumann 2014-02-05 16:46:12 +01:00 committed by sftnight
parent db215325b9
commit e0bc9916ab

View File

@ -145,7 +145,7 @@ namespace cling {
if (!IncludesSet) {
IncludesSet = true;
static const char *CppInclQuery =
"echo | LANG=C " LLVM_CXX " -xc++ -E -v - 2>&1 >/dev/null "
"echo | LC_ALL=C " LLVM_CXX " -xc++ -E -v - 2>&1 >/dev/null "
"| awk '/^#include </,/^End of search"
"/{if (!/^#include </ && !/^End of search/){ print }}' "
"| grep -E \"(c|g)\\+\\+\"";