Selaa lähdekoodia

updated : use MTCVS extLib mirror.

Nicolas Cannasse 19 vuotta sitten
vanhempi
commit
2d755ef2be
1 muutettua tiedostoa jossa 4 lisäystä ja 12 poistoa
  1. 4 12
      doc/install.ml

+ 4 - 12
doc/install.ml

@@ -60,19 +60,12 @@ let modules l ext =
 
 ;;
 
-let sourceforge = ":pserver:[email protected]:/cvsroot/ocaml-lib" in
 let motiontwin = ":pserver:[email protected]:/cvsroot" in
 
-
-let download_extlib() =
-	msg "*** Please hit enter on login (empty password) ***";
-	cvs sourceforge "login";
-	cvs sourceforge "co extlib-dev";
-in
-
 let download_libs() =
 	cvs motiontwin "co ocaml/swflib";
 	cvs motiontwin "co ocaml/extc";
+	cvs motiontwin "co ocaml/extlib-dev";
 	cvs motiontwin "co neko/libs/include/ocaml"
 in
 
@@ -81,15 +74,14 @@ let download() =
 	cvs motiontwin "login";
 	cvs motiontwin "co haxe";
 	download_libs();
-	download_extlib();	
 in
 
 let compile_libs() =	
 	(* EXTLIB *)
-	Sys.chdir "extlib-dev";
-	command ("ocaml install.ml -nodoc -d ../ocaml " ^ (if bytecode then "-b " else "") ^ (if native then "-n" else ""));
+	Sys.chdir "ocaml/extlib-dev";
+	command ("ocaml install.ml -nodoc -d .. " ^ (if bytecode then "-b " else "") ^ (if native then "-n" else ""));
 	msg "";
-	Sys.chdir "..";
+	Sys.chdir "../..";
 
 	(* EXTC *)
 	Sys.chdir "ocaml/extc";