]> AND Public Git Repository - simgrid.git/blobdiff - tools/cmake/scripts/fixup_simgrid_dtd_l.pl
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move request_execute and request_to_string from api::get() to Transition
[simgrid.git] / tools / cmake / scripts / fixup_simgrid_dtd_l.pl
index bf486fb35d2b1447020fd540748b95cb25e0ade7..67f66de2100611223b01b769bbafd042c67304f9 100755 (executable)
@@ -6,7 +6,7 @@ while (<>) {
     next if (m#^ \* Generated [0-9/]* [0-9:]*#);
 
     # Informative error message for files using a very old DTD
-    s#"Bad declaration %s."#"Bad declaration %s.\\nIf your are using a XML v3 file (check the version attribute in <platform>), please update it with tools/simgrid_update_xml.pl"#;
+    s#"Bad declaration %s."#"Bad declaration %s.\\nIf you are using an XML v3 file (check the version attribute in <platform>), please update it with tools/simgrid_update_xml.pl"#;
 
     # Accept the alternative DTD location
     if (/DOCTYPE.*simgrid.org.simgrid.dtd/)  {
@@ -17,8 +17,8 @@ while (<>) {
     if (/fprintf.stderr, .*? flexml_err_msg.;/) {
        print('    surf_parse_error(flexml_err_msg);'."\n");
        next;
-    }  
-    
+    }
+
     # Actually outputs the resulting line
     print;
 }