Make configure.exe not overwrite its own Makefile in -fast mode
configure.exe's Makefile is created by configure.bat. While severely lacking, it is what gets executed when the user configures, so developers modifying configure.exe should use that too. Change-Id: Ib216889594d08c980bfae6d2dbbb27ee9901375a Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>bb10
parent
8da57f3732
commit
f1b324a83c
|
|
@ -3401,6 +3401,9 @@ void Configure::generateMakefiles()
|
|||
for (i=0; i<3; i++) {
|
||||
for (int j=0; j<makeList[i].size(); ++j) {
|
||||
MakeItem *it=makeList[i][j];
|
||||
if (it->directory == "tools/configure")
|
||||
continue; // don't overwrite our own Makefile
|
||||
|
||||
QString dirPath = fixSeparators(it->directory + "/");
|
||||
QString projectName = it->proFile;
|
||||
QString makefileName = buildPath + "/" + dirPath + it->target;
|
||||
|
|
|
|||
Loading…
Reference in New Issue