diff options
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index f4e5848..340766e 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1519,9 +1519,14 @@ void cmake::UpdateConversionPathTable() if(tablepath) { std::ifstream table( tablepath ); - std::string a, b; - if( table.is_open() && table.good() ) + if(!table) { + cmSystemTools::Error("CMAKE_PATH_TRANSLATION_FILE set to ", tablepath, ". CMake can not open file."); + cmSystemTools::ReportLastSystemError("CMake can not open file."); + } + else + { + std::string a, b; while(!table.eof()) { // two entries per line |