summaryrefslogtreecommitdiffstats
path: root/Source/cmElseCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-01-03 14:34:40 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-01-03 14:34:40 (GMT)
commitd163cb70147b9c032c966702532e51ce5a49574a (patch)
tree16d7dbc33bb544574b5380a30dcbc26783acec5f /Source/cmElseCommand.cxx
parente07ea14e31e1d91632bdd5d56124ab394042f0d1 (diff)
downloadCMake-d163cb70147b9c032c966702532e51ce5a49574a.zip
CMake-d163cb70147b9c032c966702532e51ce5a49574a.tar.gz
CMake-d163cb70147b9c032c966702532e51ce5a49574a.tar.bz2
expand vars nwo for exists test
Diffstat (limited to 'Source/cmElseCommand.cxx')
-rw-r--r--Source/cmElseCommand.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmElseCommand.cxx b/Source/cmElseCommand.cxx
index c04dbeb..984397a 100644
--- a/Source/cmElseCommand.cxx
+++ b/Source/cmElseCommand.cxx
@@ -75,7 +75,9 @@ bool cmElseCommand::InitialPass(std::vector<std::string> const& args)
if (args.size() == 2 && (args[0] == "EXISTS"))
{
- if(cmSystemTools::FileExists(args[1].c_str()))
+ std::string tmp = args[1];
+ m_Makefile->ExpandVariablesInString(tmp);
+ if(cmSystemTools::FileExists(tmp.c_str()))
{
f = new cmIfFunctionBlocker();
}