summaryrefslogtreecommitdiff
path: root/Source/cmIncludeCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-08 16:55:30 -0400
committerKen Martin <ken.martin@kitware.com>2005-06-08 16:55:30 -0400
commitd82a038ee16c3c51219613882162307c4bcaa4ad (patch)
tree650f25d34d200411381984bd0237a94f2a620deb /Source/cmIncludeCommand.cxx
parent25314c428ad733148decb664c76f4e6ddd6732fc (diff)
downloadcmake-d82a038ee16c3c51219613882162307c4bcaa4ad.tar.gz
BUG: fatal error in include file should not cause report of missing include file
Diffstat (limited to 'Source/cmIncludeCommand.cxx')
-rw-r--r--Source/cmIncludeCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIncludeCommand.cxx b/Source/cmIncludeCommand.cxx
index deb10983ab..7b7a27ebfd 100644
--- a/Source/cmIncludeCommand.cxx
+++ b/Source/cmIncludeCommand.cxx
@@ -48,7 +48,7 @@ bool cmIncludeCommand::InitialPass(std::vector<std::string> const& args)
}
bool readit = m_Makefile->ReadListFile( m_Makefile->GetCurrentListFile(),
fname.c_str() );
- if(!optional && !readit)
+ if(!optional && !readit && !cmSystemTools::GetFatalErrorOccured())
{
std::string m = "Could not find include file: ";
m += fname;