summaryrefslogtreecommitdiff
path: root/Source/cmElseCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-06-20 10:39:58 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2002-06-20 10:39:58 -0400
commit20d9083455459e179f7da5e3d1228609bb3231e7 (patch)
tree989bab213f8101b2965c67ce8fab734d124978de /Source/cmElseCommand.cxx
parent159338bcf89fdeb01549af36e2694b813c6a6de2 (diff)
downloadcmake-20d9083455459e179f7da5e3d1228609bb3231e7.tar.gz
modified MATCHES to handle non variables
Diffstat (limited to 'Source/cmElseCommand.cxx')
-rw-r--r--Source/cmElseCommand.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmElseCommand.cxx b/Source/cmElseCommand.cxx
index 5451004abd..ad11fe7677 100644
--- a/Source/cmElseCommand.cxx
+++ b/Source/cmElseCommand.cxx
@@ -145,10 +145,14 @@ bool cmElseCommand::InitialPass(std::vector<std::string> const& args)
if (args.size() == 3 && (args[1] == "MATCHES"))
{
def = m_Makefile->GetDefinition(args[0].c_str());
+ if (!def)
+ {
+ def = args[0].c_str();
+ }
cmRegularExpression regEntry(args[2].c_str());
// check for black line or comment
- if (def && regEntry.find(def))
+ if (regEntry.find(def))
{
f = new cmIfFunctionBlocker();
}