浏览代码

STYLE: more space in the cmake_install.cmake script (easier to read)

Alex
Alexander Neundorf 18 年之前
父节点
当前提交
7ff741f14d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Source/cmLocalGenerator.cxx

+ 2 - 2
Source/cmLocalGenerator.cxx

@@ -463,7 +463,7 @@ void cmLocalGenerator::GenerateInstallRules()
         }
       }
     fout << "\n";
-    fout << "ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY)\n";
+    fout << "ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY)\n\n";
     }
 
   // Record the install manifest.
@@ -475,7 +475,7 @@ void cmLocalGenerator::GenerateInstallRules()
       "${CMAKE_INSTALL_COMPONENT}.txt\")\n"
       "ELSE(CMAKE_INSTALL_COMPONENT)\n"
       "  SET(CMAKE_INSTALL_MANIFEST \"install_manifest.txt\")\n"
-      "ENDIF(CMAKE_INSTALL_COMPONENT)\n";
+      "ENDIF(CMAKE_INSTALL_COMPONENT)\n\n";
     fout
       << "FILE(WRITE \""
       << homedir.c_str() << "/${CMAKE_INSTALL_MANIFEST}\" "