diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-05-29 19:30:54 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-05-29 19:30:54 (GMT) |
commit | eee69632d643847b7b7e04be9fc8c51ace0fa34e (patch) | |
tree | 383ef16d5e53ffb74a7ff1f0ad8d25bcf06a189d /Source/cmGetTargetPropertyCommand.cxx | |
parent | dfd22fdf23f09d311f197b6f596dbcd3163b4914 (diff) | |
download | CMake-eee69632d643847b7b7e04be9fc8c51ace0fa34e.zip CMake-eee69632d643847b7b7e04be9fc8c51ace0fa34e.tar.gz CMake-eee69632d643847b7b7e04be9fc8c51ace0fa34e.tar.bz2 |
minor bug fix
Diffstat (limited to 'Source/cmGetTargetPropertyCommand.cxx')
-rw-r--r-- | Source/cmGetTargetPropertyCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |