summaryrefslogtreecommitdiff
path: root/Source/cmElseCommand.cxx
diff options
context:
space:
mode:
authorBerk Geveci <berk.geveci@kitware.com>2001-08-09 14:58:47 -0400
committerBerk Geveci <berk.geveci@kitware.com>2001-08-09 14:58:47 -0400
commit78da2d06992d9e49cab3c43147452ccdd30aeeee (patch)
tree33670cad3429fcd6e3a37cb301372cfaa24dd744 /Source/cmElseCommand.cxx
parent6f9a9b6201726eab94db0ac33b8b9146927811f3 (diff)
downloadcmake-78da2d06992d9e49cab3c43147452ccdd30aeeee.tar.gz
BUG: or and and were inverted.
Diffstat (limited to 'Source/cmElseCommand.cxx')
-rw-r--r--Source/cmElseCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmElseCommand.cxx b/Source/cmElseCommand.cxx
index 4aca32ae79..2117c397a9 100644
--- a/Source/cmElseCommand.cxx
+++ b/Source/cmElseCommand.cxx
@@ -78,7 +78,7 @@ bool cmElseCommand::InitialPass(std::vector<std::string>& args)
{
def = m_Makefile->GetDefinition(args[0].c_str());
def2 = m_Makefile->GetDefinition(args[2].c_str());
- if(cmSystemTools::IsOff(def) || cmSystemTools::IsOff(def2))
+ if(!cmSystemTools::IsOff(def) && !cmSystemTools::IsOff(def2))
{
f = new cmIfFunctionBlocker();
}
@@ -88,7 +88,7 @@ bool cmElseCommand::InitialPass(std::vector<std::string>& args)
{
def = m_Makefile->GetDefinition(args[0].c_str());
def2 = m_Makefile->GetDefinition(args[2].c_str());
- if(cmSystemTools::IsOff(def) && cmSystemTools::IsOff(def2))
+ if(!cmSystemTools::IsOff(def) || !cmSystemTools::IsOff(def2))
{
f = new cmIfFunctionBlocker();
}