summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmElseCommand.cxx6
-rw-r--r--Source/cmIfCommand.cxx6
2 files changed, 10 insertions, 2 deletions
diff --git a/Source/cmElseCommand.cxx b/Source/cmElseCommand.cxx
index 5451004..ad11fe7 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();
}
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx
index 85cb98d..2a36853 100644
--- a/Source/cmIfCommand.cxx
+++ b/Source/cmIfCommand.cxx
@@ -140,10 +140,14 @@ bool cmIfCommand::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();
}