Can you commit yourself?<br><br><div class="gmail_quote">On Sat, Nov 20, 2010 at 11:13 AM, Tim Blechmann <span dir="ltr"><<a href="mailto:tim@klingt.org">tim@klingt.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
when using parallel builds, make install with kdesudo uses a command string<br>
like:<br>
kdesudo -t -c make -j4 install<br>
<br>
this fails, since -j4 is interpreted as argument to kdesudo, but not to<br>
make. this patch changes the kdesudo command string to<br>
<br>
kdesudo -t -- make -j4 install<br>
<br>
Signed-off-by: Tim Blechmann <<a href="mailto:tim@klingt.org">tim@klingt.org</a>><br>
---<br>
 projectbuilders/makebuilder/makejob.cpp |    2 +-<br>
 1 files changed, 1 insertions(+), 1 deletions(-)<br>
<br>
diff --git a/projectbuilders/makebuilder/makejob.cpp b/projectbuilders/makebuilder/makejob.cpp<br>
index eaf7074..a638cc9 100644<br>
--- a/projectbuilders/makebuilder/makejob.cpp<br>
+++ b/projectbuilders/makebuilder/makejob.cpp<br>
@@ -228,7 +228,7 @@ QStringList MakeJob::computeBuildCommand() const<br>
         QString suCommandName;<br>
         if (suCommand == 1) {<br>
           suCommandName = "kdesudo";<br>
-          arguments << "-t" << "-c" << cmdline;<br>
+          arguments << "-t" << "--" << cmdline;<br>
         } else if (suCommand == 2) {<br>
           suCommandName = "sudo";<br>
           arguments << cmdline;<br>
--<br>
1.7.1<br>
<font color="#888888"><br>
<br>
--<br>
KDevelop-devel mailing list<br>
<a href="mailto:KDevelop-devel@kdevelop.org">KDevelop-devel@kdevelop.org</a><br>
<a href="https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel" target="_blank">https://barney.cs.uni-potsdam.de/mailman/listinfo/kdevelop-devel</a><br>
</font></blockquote></div><br>