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
4ddd3b9f
Commit
4ddd3b9f
authored
Jul 20, 2012
by
Bill Hoffman
Browse files
Use OUTPUT_NORMAL instead of OUTPUT_MERGE for cmake -E chdir.
Using OUTPUT_MERGE can cause the output to be jumbled in some cases.
parent
caeca309
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmake.cxx
View file @
4ddd3b9f
...
...
@@ -1423,7 +1423,7 @@ int cmake::ExecuteCMakeCommand(std::vector<std::string>& args)
int
retval
=
0
;
int
timeout
=
0
;
if
(
cmSystemTools
::
RunSingleCommand
(
command
.
c_str
(),
0
,
&
retval
,
directory
.
c_str
(),
cmSystemTools
::
OUTPUT_
MERGE
,
timeout
)
)
directory
.
c_str
(),
cmSystemTools
::
OUTPUT_
NORMAL
,
timeout
)
)
{
return
retval
;
}
...
...
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