BUG: fix issue with too many fast targets being listed
This commit is contained in:
parent
29a03db7ce
commit
6580114309
|
@ -651,6 +651,10 @@ cmGlobalUnixMakefileGenerator3
|
|||
}
|
||||
else
|
||||
{
|
||||
if(t->second.GetName() &&
|
||||
strlen(t->second.GetName()) &&
|
||||
emitted.insert(t->second.GetName()).second)
|
||||
{
|
||||
// Add a fast rule to build the target
|
||||
depends.clear();
|
||||
commands.clear();
|
||||
|
@ -663,6 +667,7 @@ cmGlobalUnixMakefileGenerator3
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue