Convert: Remove last uses of HOME enum value
This commit is contained in:
parent
495e26ae57
commit
0a98c74c1b
|
@ -774,8 +774,8 @@ std::string cmGlobalNinjaGenerator::ConvertToNinjaFolderRule(
|
|||
{
|
||||
cmLocalNinjaGenerator* ng =
|
||||
static_cast<cmLocalNinjaGenerator*>(this->LocalGenerators[0]);
|
||||
std::string convPath =
|
||||
ng->ConvertToRelativePath(path + "/all", cmOutputConverter::HOME);
|
||||
std::string convPath = ng->ConvertToRelativePath(
|
||||
this->LocalGenerators[0]->GetState()->GetSourceDirectory(), path + "/all");
|
||||
convPath = this->NinjaOutputPath(convPath);
|
||||
#ifdef _WIN32
|
||||
std::replace(convPath.begin(), convPath.end(), '/', '\\');
|
||||
|
|
|
@ -404,8 +404,8 @@ void cmListFileBacktrace::PrintTitle(std::ostream& out) const
|
|||
cmOutputConverter converter(this->Bottom);
|
||||
cmListFileContext lfc = *this->Cur;
|
||||
if (!this->Bottom.GetState()->GetIsInTryCompile()) {
|
||||
lfc.FilePath =
|
||||
converter.ConvertToRelativePath(lfc.FilePath, cmOutputConverter::HOME);
|
||||
lfc.FilePath = converter.ConvertToRelativePath(
|
||||
this->Bottom.GetState()->GetSourceDirectory(), lfc.FilePath);
|
||||
}
|
||||
out << (lfc.Line ? " at " : " in ") << lfc;
|
||||
}
|
||||
|
@ -430,8 +430,8 @@ void cmListFileBacktrace::PrintCallStack(std::ostream& out) const
|
|||
}
|
||||
cmListFileContext lfc = *i;
|
||||
if (!this->Bottom.GetState()->GetIsInTryCompile()) {
|
||||
lfc.FilePath =
|
||||
converter.ConvertToRelativePath(lfc.FilePath, cmOutputConverter::HOME);
|
||||
lfc.FilePath = converter.ConvertToRelativePath(
|
||||
this->Bottom.GetState()->GetSourceDirectory(), lfc.FilePath);
|
||||
}
|
||||
out << " " << lfc << "\n";
|
||||
}
|
||||
|
|
|
@ -596,8 +596,8 @@ void cmTarget::GetTllSignatureTraces(std::ostream& s, TLLSignature sig) const
|
|||
it != this->TLLCommands.end(); ++it) {
|
||||
if (it->first == sig) {
|
||||
cmListFileContext lfc = it->second;
|
||||
lfc.FilePath =
|
||||
converter.ConvertToRelativePath(lfc.FilePath, cmOutputConverter::HOME);
|
||||
lfc.FilePath = converter.ConvertToRelativePath(
|
||||
this->Makefile->GetState()->GetSourceDirectory(), lfc.FilePath);
|
||||
s << " * " << lfc << std::endl;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue