dispose of Option::shellPath
use isWindowsShell() in the one remaining case. Change-Id: I25eab398ef50df5a7f4ec808279b83ca900e3c58 Reviewed-by: Mark Brand <mabrand@mabrand.nl>
This commit is contained in:
parent
e18ceca47e
commit
a47c6e5ea0
@ -51,7 +51,7 @@ QT_BEGIN_NAMESPACE
|
||||
|
||||
MingwMakefileGenerator::MingwMakefileGenerator() : Win32MakefileGenerator(), init_flag(false)
|
||||
{
|
||||
if (Option::shellPath.isEmpty())
|
||||
if (isWindowsShell())
|
||||
quote = "\"";
|
||||
else
|
||||
quote = "'";
|
||||
|
@ -88,7 +88,6 @@ QStringList Option::before_user_vars;
|
||||
QStringList Option::after_user_vars;
|
||||
QString Option::user_template;
|
||||
QString Option::user_template_prefix;
|
||||
QStringList Option::shellPath;
|
||||
Option::HOST_MODE Option::host_mode = Option::HOST_UNKNOWN_MODE;
|
||||
|
||||
//QMAKE_*_PROPERTY stuff
|
||||
@ -572,7 +571,6 @@ bool Option::postProcessProject(QMakeProject *project)
|
||||
Option::lex_mod = project->first("QMAKE_MOD_LEX");
|
||||
Option::yacc_mod = project->first("QMAKE_MOD_YACC");
|
||||
Option::dir_sep = project->first("QMAKE_DIR_SEP");
|
||||
Option::shellPath = project->values("QMAKE_SH");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -171,7 +171,6 @@ struct Option
|
||||
enum HOST_MODE { HOST_UNKNOWN_MODE, HOST_UNIX_MODE, HOST_WIN_MODE, HOST_MACX_MODE };
|
||||
static HOST_MODE host_mode;
|
||||
static QString user_template, user_template_prefix;
|
||||
static QStringList shellPath;
|
||||
|
||||
//QMAKE_*_PROPERTY options
|
||||
struct prop {
|
||||
|
Loading…
Reference in New Issue
Block a user