diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-08-17 21:11:42 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-08-17 21:11:42 (GMT) |
commit | c151f30861d83e8f0f1d3823fc14c7952c3c6555 (patch) | |
tree | 8ae790463d19653bf4eea947bccdfb2edecb7d9e /Source/cmElseCommand.cxx | |
parent | 68cfb4c8f4442f14600e8159a4ea38734a0e60b4 (diff) | |
download | CMake-c151f30861d83e8f0f1d3823fc14c7952c3c6555.zip CMake-c151f30861d83e8f0f1d3823fc14c7952c3c6555.tar.gz CMake-c151f30861d83e8f0f1d3823fc14c7952c3c6555.tar.bz2 |
backwards MATCHES in if and else statements
Diffstat (limited to 'Source/cmElseCommand.cxx')
-rw-r--r-- | Source/cmElseCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmElseCommand.cxx b/Source/cmElseCommand.cxx index 2117c39..0f35203 100644 --- a/Source/cmElseCommand.cxx +++ b/Source/cmElseCommand.cxx @@ -100,7 +100,7 @@ bool cmElseCommand::InitialPass(std::vector<std::string>& args) cmRegularExpression regEntry(args[2].c_str()); // check for black line or comment - if (!regEntry.find(def)) + if (regEntry.find(def)) { f = new cmIfFunctionBlocker(); } |