From c554da69f6559f160be532cb1731454d89999e4b Mon Sep 17 00:00:00 2001
From: Gauthier Becker <gauthierbecker@gmail.com>
Date: Tue, 23 Oct 2012 22:23:03 +0000
Subject: [PATCH] Install for Ubuntu + fix multiple print of meshFormat in case
 of a multiple view file

---
 Post/PViewDataGModelIO.cpp | 32 +++++++++++++++++++-------------
 1 file changed, 19 insertions(+), 13 deletions(-)

diff --git a/Post/PViewDataGModelIO.cpp b/Post/PViewDataGModelIO.cpp
index 2c3e0ace83..9671c4605a 100644
--- a/Post/PViewDataGModelIO.cpp
+++ b/Post/PViewDataGModelIO.cpp
@@ -156,22 +156,28 @@ bool PViewDataGModel::writeMSH(const std::string &fileName, bool binary, bool sa
     }
   }
   else{
-    if(multipleView)
+    if(multipleView){
       fp = fopen(fileName.c_str(), binary ? "ab" : "a");
-    else
-      fp = fopen(fileName.c_str(), binary ? "wb" : "w");
-    if(!fp){
-      Msg::Error("Unable to open file '%s'", fileName.c_str());
-      return false;
+      if(!fp){
+        Msg::Error("Unable to open file '%s'", fileName.c_str());
+        return false;
+      }
     }
-    fprintf(fp, "$MeshFormat\n");
-    fprintf(fp, "%g %d %d\n", 2.2, binary ? 1 : 0, (int)sizeof(double));
-    if(binary){
-      int one = 1;
-      fwrite(&one, sizeof(int), 1, fp);
-      fprintf(fp, "\n");
+    else{
+      fp = fopen(fileName.c_str(), binary ? "wb" : "w");
+      if(!fp){
+        Msg::Error("Unable to open file '%s'", fileName.c_str());
+        return false;
+      }
+      fprintf(fp, "$MeshFormat\n");
+      fprintf(fp, "%g %d %d\n", 2.2, binary ? 1 : 0, (int)sizeof(double));
+      if(binary){
+        int one = 1;
+        fwrite(&one, sizeof(int), 1, fp);
+        fprintf(fp, "\n");
+      }
+      fprintf(fp, "$EndMeshFormat\n");
     }
-    fprintf(fp, "$EndMeshFormat\n");
   }
 
   if(haveInterpolationMatrices()){
-- 
GitLab