disable grep colors, fixes ROOT-8056

This commit is contained in:
Paul Seyfert 2016-03-20 00:54:47 +01:00 committed by sftnight
parent 0d827a761a
commit 8fe8f2f4ad

View File

@ -437,7 +437,7 @@ namespace {
"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)\\+\\+\"";
"| GREP_OPTIONS= grep -E \"(c|g)\\+\\+\"";
if (FILE *pf = ::popen(CppInclQuery, "r")) {
HostCXXI.push_back("-nostdinc++");