diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-05-13 15:08:29 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-05-13 15:08:29 (GMT) |
commit | 0a7ec1a4b6fb822968f38e4fc147fb0dd73aaed8 (patch) | |
tree | 018a33ee7b2a520dd56de67077a701f149ef31ce /Source/cmWhileCommand.cxx | |
parent | cecfce23a5138a0f44a9231d158c1d8541233a36 (diff) | |
download | CMake-0a7ec1a4b6fb822968f38e4fc147fb0dd73aaed8.zip CMake-0a7ec1a4b6fb822968f38e4fc147fb0dd73aaed8.tar.gz CMake-0a7ec1a4b6fb822968f38e4fc147fb0dd73aaed8.tar.bz2 |
BUG: fix for #9014, FATAL_ERROR not ending loops
Diffstat (limited to 'Source/cmWhileCommand.cxx')
-rw-r--r-- | Source/cmWhileCommand.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmWhileCommand.cxx b/Source/cmWhileCommand.cxx index cc16512..e51f253 100644 --- a/Source/cmWhileCommand.cxx +++ b/Source/cmWhileCommand.cxx @@ -60,6 +60,10 @@ IsFunctionBlocked(const cmListFileFunction& lff, cmMakefile &mf, { return true; } + if(cmSystemTools::GetFatalErrorOccured() ) + { + return true; + } } expandedArguments.clear(); mf.ExpandArguments(this->Args, expandedArguments); |