diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-05-29 15:30:54 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-05-29 15:30:54 -0400 |
commit | eee69632d643847b7b7e04be9fc8c51ace0fa34e (patch) | |
tree | 383ef16d5e53ffb74a7ff1f0ad8d25bcf06a189d /Source/cmGetSourceFilePropertyCommand.cxx | |
parent | dfd22fdf23f09d311f197b6f596dbcd3163b4914 (diff) | |
download | cmake-eee69632d643847b7b7e04be9fc8c51ace0fa34e.tar.gz |
minor bug fix
Diffstat (limited to 'Source/cmGetSourceFilePropertyCommand.cxx')
-rw-r--r-- | Source/cmGetSourceFilePropertyCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGetSourceFilePropertyCommand.cxx b/Source/cmGetSourceFilePropertyCommand.cxx index efd9776533..8e4d3b280a 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; } |