aboutsummaryrefslogtreecommitdiff
path: root/tools/mhmake/src/commandqueue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mhmake/src/commandqueue.cpp')
-rw-r--r--tools/mhmake/src/commandqueue.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/mhmake/src/commandqueue.cpp b/tools/mhmake/src/commandqueue.cpp
index d2d462df6..45a1d1043 100644
--- a/tools/mhmake/src/commandqueue.cpp
+++ b/tools/mhmake/src/commandqueue.cpp
@@ -267,16 +267,11 @@ bool commandqueue::StartExecuteCommands(fileinfo* pTarget)
pActiveEntry->pTarget=pTarget;
pActiveEntry->CurrentCommandIt=CommandIt;
- while (1)
+ while (pActiveEntry->CurrentCommandIt!=pRule->GetCommands().end())
{
if (StartExecuteNextCommand(pActiveEntry, &ActiveProcess))
{
pActiveEntry->CurrentCommandIt++;
- if (pActiveEntry->CurrentCommandIt==pRule->GetCommands().end())
- {
- // All commands executed
- break;
- }
}
else
{