summaryrefslogtreecommitdiffstats
path: root/buildtool.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2007-03-07 11:52:56 +0000
committerishmal <ishmal@users.sourceforge.net>2007-03-07 11:52:56 +0000
commitad9f5881d0e0bdfaf221848a64ba98c7f2e2abcb (patch)
tree8b549fe99d00ee383f8436d02949a90813e0c284 /buildtool.cpp
parentBegin work on selectable color channels for paint bucket, starting with visib... (diff)
downloadinkscape-ad9f5881d0e0bdfaf221848a64ba98c7f2e2abcb.tar.gz
inkscape-ad9f5881d0e0bdfaf221848a64ba98c7f2e2abcb.zip
improve timing
(bzr r2562)
Diffstat (limited to 'buildtool.cpp')
-rw-r--r--buildtool.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtool.cpp b/buildtool.cpp
index cb1389158..34f542b3e 100644
--- a/buildtool.cpp
+++ b/buildtool.cpp
@@ -37,7 +37,7 @@
*
*/
-#define BUILDTOOL_VERSION "BuildTool v0.6.5, 2007 Bob Jamison"
+#define BUILDTOOL_VERSION "BuildTool v0.6.6, 2007 Bob Jamison"
#include <stdio.h>
#include <unistd.h>
@@ -3567,7 +3567,7 @@ bool MakeBase::executeCommand(const String &command,
if (exitCode != STILL_ACTIVE)
lastLoop = true;
- Sleep(50);
+ Sleep(10);
}
//trace("outbuf:%s", outbuf.c_str());
if (!CloseHandle(stdoutRead))
@@ -7044,7 +7044,7 @@ public:
TaskSharedLib(MakeBase &par) : Task(par)
{
type = TASK_SHAREDLIB; name = "dll";
- command = "ar crv";
+ command = "dllwrap";
}
virtual ~TaskSharedLib()