瀏覽代碼

COMP: remove compiler warning

Andy Cedilnik 20 年之前
父節點
當前提交
9bf0811e34
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      Source/cmOrderLinkDirectories.cxx

+ 3 - 3
Source/cmOrderLinkDirectories.cxx

@@ -6,11 +6,11 @@
 
 //-------------------------------------------------------------------
 bool cmOrderLinkDirectories::LibraryInDirectory(const char* dir, 
-                                                const char* lib)
+                                                const char* libIn)
 {
   cmStdString path = dir;
   path += "/";
-  path += lib;
+  path += libIn;
   // first look for the library as given
   if(cmSystemTools::FileExists(path.c_str()))
     {
@@ -18,7 +18,7 @@ bool cmOrderLinkDirectories::LibraryInDirectory(const char* dir,
     }
   // next remove the extension (.a, .so ) and look for the library
   // under a different name as the linker can do either
-  if(m_RemoveLibraryExtension.find(lib))
+  if(m_RemoveLibraryExtension.find(libIn))
     {
     cmStdString lib = m_RemoveLibraryExtension.match(1);
     cmStdString ext = m_RemoveLibraryExtension.match(2);