mirror of https://github.com/qt/qtbase.git
Xcode: Completely filter out environment variables in build log
17d690952b
missed a few instances that should have showEnvVarsInLog = 0.
Change-Id: I8f1106426447670b0057aeb421efc09bf117e969
Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@theqtcompany.com>
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
This commit is contained in:
parent
c44666cfee
commit
2094903a14
|
@ -994,6 +994,7 @@ ProjectBuilderMakefileGenerator::writeMakeParts(QTextStream &t)
|
|||
<< "\t\t\t" << writeSettings("name", "Qt Sublibs") << ";\n"
|
||||
<< "\t\t\t" << writeSettings("shellPath", "/bin/sh") << "\n"
|
||||
<< "\t\t\t" << writeSettings("shellScript", "make -C " + IoUtils::shellQuoteUnix(qmake_getpwd()) + " -f " + IoUtils::shellQuoteUnix(mkfile)) << ";\n"
|
||||
<< "\t\t\t" << writeSettings("showEnvVarsInLog", "0") << ";\n"
|
||||
<< "\t\t};\n";
|
||||
}
|
||||
|
||||
|
@ -1029,6 +1030,7 @@ ProjectBuilderMakefileGenerator::writeMakeParts(QTextStream &t)
|
|||
<< "\t\t\t" << writeSettings("name", "Qt Prelink") << ";\n"
|
||||
<< "\t\t\t" << writeSettings("shellPath", "/bin/sh") << ";\n"
|
||||
<< "\t\t\t" << writeSettings("shellScript", project->values("QMAKE_PRE_LINK")) << ";\n"
|
||||
<< "\t\t\t" << writeSettings("showEnvVarsInLog", "0") << ";\n"
|
||||
<< "\t\t};\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue