cmMakefile: Access the execution list file from the cmState.
This commit is contained in:
parent
6361f68056
commit
30d44efaf8
|
@ -3418,7 +3418,8 @@ std::string cmMakefile::GetExecutionFilePath() const
|
|||
{
|
||||
return std::string();
|
||||
}
|
||||
return this->ContextStack.back()->FilePath;
|
||||
assert(this->StateSnapshot.IsValid());
|
||||
return this->StateSnapshot.GetExecutionListFile();
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue