don't use $(MAKEFILE) to refer to SUBDIRS' makefiles
$(MAKEFILE) is our own file, and using it would wreak havoc if it was named anything but Makefile. Change-Id: I51cae2014a85399b409f18788f864ff2a82e493e Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
This commit is contained in:
parent
91cf67c85d
commit
0e6ddb71cc
@ -2298,7 +2298,7 @@ MakefileGenerator::findSubDirsSubTargets() const
|
||||
if(!project->isEmpty(fixedSubdir + ".makefile")) {
|
||||
st->makefile = project->first(fixedSubdir + ".makefile");
|
||||
} else {
|
||||
st->makefile = "$(MAKEFILE)";
|
||||
st->makefile = "Makefile";
|
||||
if(!st->profile.isEmpty()) {
|
||||
QString basename = st->in_directory;
|
||||
int new_slsh = basename.lastIndexOf(Option::dir_sep);
|
||||
|
Loading…
Reference in New Issue
Block a user