diff options
author | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2001-10-18 17:03:37 (GMT) |
---|---|---|
committer | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2001-10-18 17:03:37 (GMT) |
commit | 8106e93dca85f21e6112feb34972ceffddf82662 (patch) | |
tree | cc9ba5e27678786249653674383019ca92ef0ea2 /Source/cmFindFileCommand.cxx | |
parent | 71fe9280cb8736c67eaba649258c44feb4a97db3 (diff) | |
download | CMake-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.cxx | 2 |
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; } |