diff options
-rw-r--r-- | Source/cmGetSourceFilePropertyCommand.cxx | 2 | ||||
-rw-r--r-- | Source/cmGetTargetPropertyCommand.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGetSourceFilePropertyCommand.cxx b/Source/cmGetSourceFilePropertyCommand.cxx index efd9776..8e4d3b2 100644 --- a/Source/cmGetSourceFilePropertyCommand.cxx +++ b/Source/cmGetSourceFilePropertyCommand.cxx @@ -39,7 +39,7 @@ bool cmGetSourceFilePropertyCommand::InitialPass( } } - m_Makefile->AddDefinition(var, "NOT_FOUND"); + m_Makefile->AddDefinition(var, "NOTFOUND"); return true; } diff --git a/Source/cmGetTargetPropertyCommand.cxx b/Source/cmGetTargetPropertyCommand.cxx index 21626ac..7c35aaf 100644 --- a/Source/cmGetTargetPropertyCommand.cxx +++ b/Source/cmGetTargetPropertyCommand.cxx @@ -39,7 +39,7 @@ bool cmGetTargetPropertyCommand::InitialPass( return true; } } - m_Makefile->AddDefinition(var, "NOT_FOUND"); + m_Makefile->AddDefinition(var, "NOTFOUND"); return true; } |