aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/library.ml
diff options
context:
space:
mode:
Diffstat (limited to 'library/library.ml')
-rw-r--r--library/library.ml10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/library.ml b/library/library.ml
index e2adb3fb9..66bca4f1b 100644
--- a/library/library.ml
+++ b/library/library.ml
@@ -23,19 +23,19 @@ open Nametab
type logical_path = dir_path
-let load_paths = ref ([] : (System.physical_path * logical_path * bool) list)
+let load_paths = ref ([] : (CUnix.physical_path * logical_path * bool) list)
let get_load_paths () = List.map pi1 !load_paths
let find_logical_path phys_dir =
- let phys_dir = System.canonical_path_name phys_dir in
+ let phys_dir = CUnix.canonical_path_name phys_dir in
match List.filter (fun (p,d,_) -> p = phys_dir) !load_paths with
| [_,dir,_] -> dir
| [] -> Nameops.default_root_prefix
| l -> anomaly ("Two logical paths are associated to "^phys_dir)
let is_in_load_paths phys_dir =
- let dir = System.canonical_path_name phys_dir in
+ let dir = CUnix.canonical_path_name phys_dir in
let lp = get_load_paths () in
let check_p = fun p -> (String.compare dir p) == 0 in
List.exists check_p lp
@@ -44,13 +44,13 @@ let remove_load_path dir =
load_paths := List.filter (fun (p,d,_) -> p <> dir) !load_paths
let add_load_path isroot (phys_path,coq_path) =
- let phys_path = System.canonical_path_name phys_path in
+ let phys_path = CUnix.canonical_path_name phys_path in
match List.filter (fun (p,d,_) -> p = phys_path) !load_paths with
| [_,dir,_] ->
if coq_path <> dir
(* If this is not the default -I . to coqtop *)
&& not
- (phys_path = System.canonical_path_name Filename.current_dir_name
+ (phys_path = CUnix.canonical_path_name Filename.current_dir_name
&& coq_path = Nameops.default_root_prefix)
then
begin