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
cd3c98d0
Commit
cd3c98d0
authored
Feb 18, 2006
by
Brad King
Browse files
ENH: Clarified error message.
parent
644f6e83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmFileCommand.cxx
View file @
cd3c98d0
...
...
@@ -459,8 +459,8 @@ bool cmFileCommand::HandleInstallCommand(
}
if
(
!
cmSystemTools
::
FileIsDirectory
(
destination
.
c_str
())
)
{
std
::
string
errstring
=
"
found file
: "
+
destination
+
"
where expecting directory with the same name
."
;
std
::
string
errstring
=
"
INSTALL destination
: "
+
destination
+
"
is not a directory
."
;
this
->
SetError
(
errstring
.
c_str
());
return
false
;
}
...
...
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