diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-11-29 20:58:19 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-11-29 20:58:19 (GMT) |
commit | 46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134 (patch) | |
tree | 94726fec6aee4edd9144b7f399ecc79b83450e14 /Source/cmOrderLinkDirectories.cxx | |
parent | d6219588c049c8d7ca1b328d918e410e9385f0c8 (diff) | |
download | CMake-46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134.zip CMake-46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134.tar.gz CMake-46f8ed064820ec7a9d645a55a1ad7a0d3d7b8134.tar.bz2 |
BUG: fix a problem where it tried to link .dll.lib files
Diffstat (limited to 'Source/cmOrderLinkDirectories.cxx')
-rw-r--r-- | Source/cmOrderLinkDirectories.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmOrderLinkDirectories.cxx b/Source/cmOrderLinkDirectories.cxx index fb25711..c04400b 100644 --- a/Source/cmOrderLinkDirectories.cxx +++ b/Source/cmOrderLinkDirectories.cxx @@ -463,7 +463,10 @@ bool cmOrderLinkDirectories::DetermineLibraryPathOrder() #ifdef CM_ORDER_LINK_DIRECTORIES_DEBUG fprintf(stderr, "Raw link item [%s]\n", this->RawLinkItems[i].c_str()); #endif - if(cmSystemTools::FileIsFullPath(this->RawLinkItems[i].c_str())) + // check to see if the file is a full path or just contains + // a / in it and is a path to something + if(cmSystemTools::FileIsFullPath(this->RawLinkItems[i].c_str()) + || this->RawLinkItems[i].find("/") != cmStdString.npos) { if(cmSystemTools::FileIsDirectory(this->RawLinkItems[i].c_str())) { @@ -486,6 +489,8 @@ bool cmOrderLinkDirectories::DetermineLibraryPathOrder() } else { + // A full path to a directory was found as a link item + // warn user std::string message = "Warning: Ignoring path found in link libraries for target: "; message += this->TargetName; @@ -496,7 +501,7 @@ bool cmOrderLinkDirectories::DetermineLibraryPathOrder() cmSystemTools::Message(message.c_str()); continue; } - } + } // is it a directory if(!framework) { dir = cmSystemTools::GetFilenamePath(this->RawLinkItems[i]); |