From c4059a21a9935f376d243f3526f8635800146e77 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 3 Apr 2014 14:04:46 -0400 Subject: cmTarget: Remove abort() after INTERNAL_ERROR reports After reporting an internal error we should continue rather than aborting. Remove such statements that are left from debugging. --- Source/cmTarget.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index a87ec31..b6bb2d3 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -2684,7 +2684,6 @@ cmTarget::OutputInfo const* cmTarget::GetOutputInfo( msg += " which has type "; msg += cmTarget::GetTargetTypeName(this->GetType()); this->GetMakefile()->IssueMessage(cmake::INTERNAL_ERROR, msg); - abort(); return 0; } @@ -2729,7 +2728,6 @@ cmTarget::CompileInfo const* cmTarget::GetCompileInfo( msg += " which has type "; msg += cmTarget::GetTargetTypeName(this->GetType()); this->GetMakefile()->IssueMessage(cmake::INTERNAL_ERROR, msg); - abort(); return 0; } -- cgit v0.12