diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-07-12 14:17:37 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-07-12 14:17:37 (GMT) |
commit | 36eb53884360351a88cc7ee1d36f2c4ff93d2443 (patch) | |
tree | e9ee9affa275770d7cafef61d7aa75f09db1020e /Source/cmGetDirectoryPropertyCommand.cxx | |
parent | 021ceea1b0c841852f8ca3f9f550d966834b4d40 (diff) | |
download | CMake-36eb53884360351a88cc7ee1d36f2c4ff93d2443.zip CMake-36eb53884360351a88cc7ee1d36f2c4ff93d2443.tar.gz CMake-36eb53884360351a88cc7ee1d36f2c4ff93d2443.tar.bz2 |
BUG: fix screwup in GetDirectoryProp...
Diffstat (limited to 'Source/cmGetDirectoryPropertyCommand.cxx')
-rw-r--r-- | Source/cmGetDirectoryPropertyCommand.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGetDirectoryPropertyCommand.cxx b/Source/cmGetDirectoryPropertyCommand.cxx index 0f0fcca..dd6affd 100644 --- a/Source/cmGetDirectoryPropertyCommand.cxx +++ b/Source/cmGetDirectoryPropertyCommand.cxx @@ -86,6 +86,7 @@ bool cmGetDirectoryPropertyCommand::InitialPass( } output = dir->GetSafeDefinition(i->c_str()); this->Makefile->AddDefinition(variable.c_str(), output.c_str()); + return true; } const char *prop = dir->GetProperty(i->c_str()); |