Ver Fonte

This command should always set the cahce variabel to a filepath not a path

Ian Scott há 24 anos atrás
pai
commit
8106e93dca
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      Source/cmFindFileCommand.cxx

+ 1 - 1
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;
 }