]> 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 67f66de2100611223b01b769bbafd042c67304f9..7a2d2515268e2a81a2e7434848930d8cf9642b88 100755 (executable)
@@ -10,12 +10,12 @@ 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;
     }