diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-20 14:39:58 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-20 14:39:58 (GMT) |
commit | 20d9083455459e179f7da5e3d1228609bb3231e7 (patch) | |
tree | 989bab213f8101b2965c67ce8fab734d124978de /Source/cmIfCommand.cxx | |
parent | 159338bcf89fdeb01549af36e2694b813c6a6de2 (diff) | |
download | CMake-20d9083455459e179f7da5e3d1228609bb3231e7.zip CMake-20d9083455459e179f7da5e3d1228609bb3231e7.tar.gz CMake-20d9083455459e179f7da5e3d1228609bb3231e7.tar.bz2 |
modified MATCHES to handle non variables
Diffstat (limited to 'Source/cmIfCommand.cxx')
-rw-r--r-- | Source/cmIfCommand.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
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(); } |