diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-30 18:56:06 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-30 18:56:06 (GMT) |
commit | 2fb2207c1025f86cc5b62faf8c3a1ca15ea18152 (patch) | |
tree | 3238682d3b82c1a09285b0942b0e62ee390f0b08 /Source/cmIfCommand.cxx | |
parent | e7519358e748e66f88b7c277a6d59fff502dad4a (diff) | |
download | CMake-2fb2207c1025f86cc5b62faf8c3a1ca15ea18152.zip CMake-2fb2207c1025f86cc5b62faf8c3a1ca15ea18152.tar.gz CMake-2fb2207c1025f86cc5b62faf8c3a1ca15ea18152.tar.bz2 |
bug fixes
Diffstat (limited to 'Source/cmIfCommand.cxx')
-rw-r--r-- | Source/cmIfCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index 462d649..86803de 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -73,7 +73,7 @@ bool cmIfCommand::Invoke(std::vector<std::string>& args) // check to see if the argument is defined first const char *def = m_Makefile->GetDefinition(args[0].c_str()); - if(cmSystemTools::IsOn(def)) + if(!cmSystemTools::IsOff(def)) { // do nothing } |