Skip to content

Commit

Permalink
configure: don't double source COQPREFIX
Browse files Browse the repository at this point in the history
install_dirs will fill it in
  • Loading branch information
SkySkimmer committed Jan 14, 2025
1 parent 5735809 commit f1893f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/configure/configure.ml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ let coqsrc = Sys.getcwd ()

type path_style =
| Absolute of string (* Should start with a "/" *)
| Relative of string (* Should not start with a "/" *)
| Relative of string (* Should not start with a "/", relative to the prefix *)

module InstallDir = struct

Expand All @@ -227,7 +227,7 @@ module InstallDir = struct
end

let install prefs =
[ InstallDir.make "COQPREFIX" "Corelib" prefs.prefix (Relative "") (Relative "")
[ InstallDir.make "COQPREFIX" "Corelib" None (Relative "") (Relative "")
; InstallDir.make "COQLIBINSTALL" "the Rocq library" prefs.libdir (Relative "lib/coq") (Relative "lib/coq")
; InstallDir.make "CONFIGDIR" "the Rocqide configuration files" prefs.configdir (Relative "config") (Absolute "/etc/xdg/coq")
; InstallDir.make "DATADIR" "the Rocqide data files" prefs.datadir (Relative "share/coq") (Relative "share/coq")
Expand Down

0 comments on commit f1893f3

Please sign in to comment.