]> 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
Add first "implementation" of k-subsets iterator
[simgrid.git] / tools / cmake / scripts / fixup_simgrid_dtd_l.pl
index f4c1535db99312c1000f1423dbe6fca8da83740e..7a2d2515268e2a81a2e7434848930d8cf9642b88 100755 (executable)
@@ -10,15 +10,15 @@ while (<>) {
 
     # Accept the alternative DTD location
     if (/DOCTYPE.*simgrid.org.simgrid.dtd/)  {
-       print ' "<!DOCTYPE"{S}"platform"{S}SYSTEM{S}("\'http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\'"|"\\"http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\\""){s}">" SET(ROOT_surfxml_platform);'."\n";
+       print ' "<!DOCTYPE"{S}"platform"{S}SYSTEM{S}("\'http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\'"|"\\"http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\\""){s}">" SET(ROOT_simgrid_parse_platform);'."\n";
     }
 
     # Completely rewrite the error handling mechanism to use exceptions instead of printing to stderr
     if (/fprintf.stderr, .*? flexml_err_msg.;/) {
-       print('    surf_parse_error(flexml_err_msg);'."\n");
+       print('    simgrid_parse_error(flexml_err_msg);'."\n");
        next;
-    }  
-    
+    }
+
     # Actually outputs the resulting line
     print;
 }