Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
8e15a1ed
Commit
8e15a1ed
authored
Feb 08, 2002
by
Bill Hoffman
Browse files
BUG: fix CollapseFullPath so a trailing slash is not added to directories
parent
a7065630
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmSystemTools.cxx
View file @
8e15a1ed
...
...
@@ -1250,6 +1250,10 @@ std::string cmSystemTools::CollapseFullPath(const char* in_name)
{
dir
=
cmSystemTools
::
GetCurrentWorkingDirectory
();
}
if
(
file
==
""
)
{
return
dir
;
}
return
dir
+
"/"
+
file
;
#endif
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment