summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackLog.cxx
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2009-01-22 18:56:13 (GMT)
committerDavid Cole <david.cole@kitware.com>2009-01-22 18:56:13 (GMT)
commit6bf31875ce3a87078ba3e90ce2e8cde44d561d86 (patch)
tree8be2d7b83f49f1028ddebea3d7197cffe8c990a2 /Source/CPack/cmCPackLog.cxx
parentc332e0bf3c4e619358322bd0d0961af45653eb5b (diff)
downloadCMake-6bf31875ce3a87078ba3e90ce2e8cde44d561d86.zip
CMake-6bf31875ce3a87078ba3e90ce2e8cde44d561d86.tar.gz
CMake-6bf31875ce3a87078ba3e90ce2e8cde44d561d86.tar.bz2
BUG: Fix issue #8383. Avoid crashing when using the Bundle CPack generator and CPACK_BUNDLE_NAME is not set. Instead, fail gracefully giving an informative error message and non-zero exit code.
Diffstat (limited to 'Source/CPack/cmCPackLog.cxx')
-rw-r--r--Source/CPack/cmCPackLog.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackLog.cxx b/Source/CPack/cmCPackLog.cxx
index 7b58039..82b990d 100644
--- a/Source/CPack/cmCPackLog.cxx
+++ b/Source/CPack/cmCPackLog.cxx
@@ -18,6 +18,7 @@
#include "cmCPackLog.h"
#include "cmGeneratedFileStream.h"
+#include "cmSystemTools.h"
//----------------------------------------------------------------------
cmCPackLog::cmCPackLog()
@@ -221,4 +222,9 @@ void cmCPackLog::Log(int tag, const char* file, int line,
{
this->NewLine = true;
}
+
+ if ( error )
+ {
+ cmSystemTools::SetErrorOccured();
+ }
}