summaryrefslogtreecommitdiff
path: root/Source/cmGlobalVisualStudio71Generator.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-12-18 13:17:36 -0500
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-12-18 13:17:36 -0500
commit72d8bd1e411d4f1f1bbe4146e91d66114e1c7110 (patch)
tree05b3674c5950ac9aa16459588f3a196f1beb3725 /Source/cmGlobalVisualStudio71Generator.cxx
parentc3840b5cc3e26886bab16faf7e27a4ef80f3686d (diff)
downloadcmake-72d8bd1e411d4f1f1bbe4146e91d66114e1c7110.tar.gz
BUG: Fix Bug #445 - Same library in multiple projects can cause problems
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio71Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx
index 52c705aa9a..9055ccb491 100644
--- a/Source/cmGlobalVisualStudio71Generator.cxx
+++ b/Source/cmGlobalVisualStudio71Generator.cxx
@@ -248,7 +248,7 @@ void cmGlobalVisualStudio71Generator::WriteProjectDepends(std::ostream& fout,
std::string libPath = j->first + "_CMAKE_PATH";
const char* cacheValue
= m_CMakeInstance->GetCacheDefinition(libPath.c_str());
- if(cacheValue)
+ if(cacheValue && *cacheValue)
{
fout << "\t\t{" << this->CreateGUID(j->first.c_str()) << "} = {"
<< this->CreateGUID(j->first.c_str()) << "}\n";