summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-04-25 18:10:52 +0000
committerishmal <ishmal@users.sourceforge.net>2008-04-25 18:10:52 +0000
commit770d8eb43273fbf3157683871b58cfdbd9cbd274 (patch)
treeb6c4cb8fdd5f3456b6efe4356c31f3ab208871e7
parentAdd a "continueOnError" flag to TaskCC. If there is an error in one of the f... (diff)
downloadinkscape-770d8eb43273fbf3157683871b58cfdbd9cbd274.tar.gz
inkscape-770d8eb43273fbf3157683871b58cfdbd9cbd274.zip
Typo
(bzr r5518)
-rw-r--r--buildtool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtool.cpp b/buildtool.cpp
index 2556cd837..b14cfcfb6 100644
--- a/buildtool.cpp
+++ b/buildtool.cpp
@@ -6393,7 +6393,7 @@ public:
error("problem compiling: %s", errString.c_str());
errorOccurred = true;
}
- if (errorOccurred || !continueOnError)
+ if (errorOccurred && !continueOnError)
break;
}