Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
f58febc4
Commit
f58febc4
authored
Apr 19, 2010
by
ck
Browse files
Maemo: For packaging errors, add dh_* stdout to the error message.
parent
8dd627a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.cpp
View file @
f58febc4
...
...
@@ -207,7 +207,8 @@ bool MaemoPackageCreationStep::runCommand(QProcess &proc, const QString &command
const
QString
mainMessage
=
tr
(
"Packaging Error: Command '%1' failed."
)
.
arg
(
command
);
raiseError
(
mainMessage
,
mainMessage
+
QLatin1Char
(
' '
)
+
tr
(
"Output was: "
)
+
proc
.
readAllStandardError
());
+
tr
(
"Output was: "
)
+
proc
.
readAllStandardError
()
+
QLatin1Char
(
'\n'
)
+
proc
.
readAllStandardOutput
());
return
false
;
}
return
true
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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