Skip to content
GitLab
Menu
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
cfdb5d74
Commit
cfdb5d74
authored
Jun 17, 2010
by
ck
Browse files
Maemo: Remove packaging timeout.
Reviewed-by: kh1
parent
c10d9972
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.cpp
View file @
cfdb5d74
...
...
@@ -241,11 +241,7 @@ bool MaemoPackageCreationStep::runCommand(QProcess &proc, const QString &command
return
false
;
}
proc
.
write
(
"
\n
"
);
// For dh_make
if
(
!
proc
.
waitForFinished
(
60000
)
&&
proc
.
error
()
==
QProcess
::
Timedout
)
{
raiseError
(
tr
(
"Packaging failed."
),
tr
(
"Packaging Error: Command '%1' timed out."
).
arg
(
command
));
return
false
;
}
proc
.
waitForFinished
(
-
1
);
if
(
proc
.
error
()
!=
QProcess
::
UnknownError
||
proc
.
exitCode
()
!=
0
)
{
QString
mainMessage
=
tr
(
"Packaging Error: Command '%1' failed."
)
.
arg
(
command
);
...
...
Write
Preview
Markdown
is supported
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