BUG: fix realpath problem again...

This commit is contained in:
Berk Geveci 2001-09-28 13:35:35 -04:00
parent 55415f418a
commit f6b3049bda
1 changed files with 1 additions and 0 deletions

View File

@ -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
}