Browse Source

BUG: fix realpath problem again...

Berk Geveci 24 years ago
parent
commit
f6b3049bda
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Source/cmSystemTools.cxx

+ 1 - 0
Source/cmSystemTools.cxx

@@ -1206,6 +1206,7 @@ std::string cmSystemTools::CollapseFullPath(const char* in_name)
 #  endif
 # endif
   realpath(dir.c_str(), resolved_name);
+  dir = resolved_name;
   return dir + "/" + file;
 #endif
 }