From eee69632d643847b7b7e04be9fc8c51ace0fa34e Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Thu, 29 May 2003 15:30:54 -0400 Subject: [PATCH] minor bug fix --- Source/cmGetSourceFilePropertyCommand.cxx | 2 +- Source/cmGetTargetPropertyCommand.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/cmGetSourceFilePropertyCommand.cxx b/Source/cmGetSourceFilePropertyCommand.cxx index efd977653..8e4d3b280 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 21626ace7..7c35aafb4 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; }