浏览代码

STYLE: fix someones line length

Ken Martin 18 年之前
父节点
当前提交
b41d4a1b54
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. 5 3
      Source/CPack/cmCPackOSXX11Generator.cxx

+ 5 - 3
Source/CPack/cmCPackOSXX11Generator.cxx

@@ -138,11 +138,13 @@ int cmCPackOSXX11Generator::CompressFiles(const char* outFileName,
   tmpFile += "/hdiutilOutput.log";
   cmOStringStream dmgCmd;
   dmgCmd << "\"" << this->GetOption("CPACK_INSTALLER_PROGRAM_DISK_IMAGE")
-    << "\" create -ov -format UDZO -srcfolder \"" << diskImageDirectory.c_str() 
-    << "\" \"" << outFileName << "\"";
+         << "\" create -ov -format UDZO -srcfolder \"" 
+         << diskImageDirectory.c_str() 
+         << "\" \"" << outFileName << "\"";
   int retVal = 1;
   cmCPackLogger(cmCPackLog::LOG_VERBOSE,
-    "Compress disk image using command: " << dmgCmd.str().c_str() << std::endl);
+                "Compress disk image using command: " 
+                << dmgCmd.str().c_str() << std::endl);
   bool res = cmSystemTools::RunSingleCommand(dmgCmd.str().c_str(), &output,
     &retVal, 0, this->GeneratorVerbose, 0);
   if ( !res || retVal )