don't overquote make command
$(MAKE) is apparently already quoted when the path contains spaces Change-Id: Ie09a0f43083f9eae95fc135c3a74364eaa356934
This commit is contained in:
parent
78290e66c4
commit
b2954378d6
@ -3700,7 +3700,7 @@ void Configure::generateMakefiles()
|
||||
QTextStream txt(&file);
|
||||
txt << "all:\n";
|
||||
txt << "\t" << args.join(" ") << "\n";
|
||||
txt << "\t\"$(MAKE)\" -$(MAKEFLAGS) -f " << it->target << "\n";
|
||||
txt << "\t$(MAKE) -$(MAKEFLAGS) -f " << it->target << "\n";
|
||||
txt << "first: all\n";
|
||||
txt << "qmake:\n";
|
||||
txt << "\t" << args.join(" ") << "\n";
|
||||
|
Loading…
Reference in New Issue
Block a user