summaryrefslogtreecommitdiffstats
path: root/Source/cmFindPackageCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-10-07 18:37:30 (GMT)
committerBrad King <brad.king@kitware.com>2009-10-07 18:37:30 (GMT)
commit71910b3fd49b3ab555333e3737ef2f7c5fc43dae (patch)
tree5b2a84bd1790c0d9fcec9269d898be526c531274 /Source/cmFindPackageCommand.cxx
parent1b5a986a427301841fddbf79bfa9016309fe28d4 (diff)
downloadCMake-71910b3fd49b3ab555333e3737ef2f7c5fc43dae.zip
CMake-71910b3fd49b3ab555333e3737ef2f7c5fc43dae.tar.gz
CMake-71910b3fd49b3ab555333e3737ef2f7c5fc43dae.tar.bz2
Fix find_package() when <pkg>_DIR is wrong
When <pkg>_DIR is set to an incorrect version we search again and store the result in the variable, even if it is <pkg>_DIR-NOTFOUND. There was a bug in the case when the new search does not find anything and the old value came from a cache entry with UNINITALIZED type. The command used to try to load a package configuration file from the last place searched, and would leave the old wrong value in the entry. This commit fixes the behavior to avoid trying to load a missing file and to set the value to <pkg>_DIR-NOTFOUND as expected.
Diffstat (limited to 'Source/cmFindPackageCommand.cxx')
-rw-r--r--Source/cmFindPackageCommand.cxx27
1 files changed, 17 insertions, 10 deletions
diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx
index 165dbc2..7dbbf6d 100644
--- a/Source/cmFindPackageCommand.cxx
+++ b/Source/cmFindPackageCommand.cxx
@@ -736,7 +736,7 @@ bool cmFindPackageCommand::HandlePackageMode()
}
// Try to load the config file if the directory is known
- bool cachedDirectoryOk = false;
+ bool fileFound = false;
if(!cmSystemTools::IsOff(def))
{
// Get the directory from the variable value.
@@ -754,25 +754,30 @@ bool cmFindPackageCommand::HandlePackageMode()
if (this->FindConfigFile(dir, file))
{
this->FileFound = file;
- cachedDirectoryOk = true;
+ fileFound = true;
}
def = this->Makefile->GetDefinition(this->Variable.c_str());
}
// Search for the config file if it is not already found.
- if(cmSystemTools::IsOff(def) || !cachedDirectoryOk)
+ if(cmSystemTools::IsOff(def) || !fileFound)
{
- this->FindConfig();
+ fileFound = this->FindConfig();
def = this->Makefile->GetDefinition(this->Variable.c_str());
}
+ // Sanity check.
+ if(fileFound && this->FileFound.empty())
+ {
+ this->Makefile->IssueMessage(
+ cmake::INTERNAL_ERROR, "fileFound is true but FileFound is empty!");
+ fileFound = false;
+ }
+
// If the directory for the config file was found, try to read the file.
bool result = true;
bool found = false;
- // in the following test FileFound should never be empty if def is valid
- // but I don't want to put an assert() in there now, in case this still
- // makes it into 2.6.3
- if(!cmSystemTools::IsOff(def) && (!this->FileFound.empty()))
+ if(fileFound)
{
// Set the version variables before loading the config file.
// It may override them.
@@ -886,7 +891,7 @@ bool cmFindPackageCommand::HandlePackageMode()
}
//----------------------------------------------------------------------------
-void cmFindPackageCommand::FindConfig()
+bool cmFindPackageCommand::FindConfig()
{
// Compute the set of search prefixes.
this->ComputePrefixes();
@@ -938,9 +943,11 @@ void cmFindPackageCommand::FindConfig()
"The directory containing a CMake configuration file for ";
help += this->Name;
help += ".";
+ // We force the value since we do not get here if it was already set.
this->Makefile->AddCacheDefinition(this->Variable.c_str(),
init.c_str(), help.c_str(),
- cmCacheManager::PATH);
+ cmCacheManager::PATH, true);
+ return found;
}
//----------------------------------------------------------------------------