summaryrefslogtreecommitdiffstats
path: root/Source/cmFindFileCommand.cxx
diff options
context:
space:
mode:
authorIan Scott <ian.m.scott@stud.man.ac.uk>2001-10-18 17:03:37 (GMT)
committerIan Scott <ian.m.scott@stud.man.ac.uk>2001-10-18 17:03:37 (GMT)
commit8106e93dca85f21e6112feb34972ceffddf82662 (patch)
treecc9ba5e27678786249653674383019ca92ef0ea2 /Source/cmFindFileCommand.cxx
parent71fe9280cb8736c67eaba649258c44feb4a97db3 (diff)
downloadCMake-8106e93dca85f21e6112feb34972ceffddf82662.zip
CMake-8106e93dca85f21e6112feb34972ceffddf82662.tar.gz
CMake-8106e93dca85f21e6112feb34972ceffddf82662.tar.bz2
This command should always set the cahce variabel to a filepath not a path
Diffstat (limited to 'Source/cmFindFileCommand.cxx')
-rw-r--r--Source/cmFindFileCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindFileCommand.cxx b/Source/cmFindFileCommand.cxx
index b610a21..d919788 100644
--- a/Source/cmFindFileCommand.cxx
+++ b/Source/cmFindFileCommand.cxx
@@ -100,7 +100,7 @@ bool cmFindFileCommand::InitialPass(std::vector<std::string> const& args)
m_Makefile->AddCacheDefinition(args[0].c_str(),
"NOTFOUND",
helpString.c_str(),
- cmCacheManager::PATH);
+ cmCacheManager::FILEPATH);
return true;
}