Skip to content

Commit a09cdd9

Browse files
Merge PR #20410: Fix alignment in ./configure -help
Reviewed-by: ppedrot Co-authored-by: proux01 <proux01@users.noreply.github.com>
2 parents 4767f32 + bc45953 commit a09cdd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/configure/cmdArgs.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ let args_options = Arg.align [
9696
"-prefix", arg_string (fun p prefix -> { p with prefix = Some (make_prefix prefix) }),
9797
"<dir> Set installation directory to <dir>";
9898
"-relocatable", arg_set (fun p -> { p with prefix = Some RelocatableInstall } ),
99-
"Make a relocatable installation";
99+
" Make a relocatable installation";
100100
"-quiet", arg_set (fun p -> { p with quiet = true }),
101101
" Don't print variables during configure";
102102
"-no-ask", arg_set (fun p -> { p with interactive = false }),
@@ -125,7 +125,7 @@ let args_options = Arg.align [
125125
no (default): no native compilation available at all
126126
ondemand: -native-compiler option of coqc will default to 'ondemand', stdlib will not be precompiled";
127127
"-warn-error", arg_bool (fun p _warn_error -> warn_warn_error (); p),
128-
"Deprecated option: warnings are now adjusted in the corresponding build tool.";
128+
" Deprecated option: warnings are now adjusted in the corresponding build tool.";
129129
"-coqwebsite", arg_string (fun p coqwebsite -> { p with coqwebsite }),
130130
" URL of the rocq website";
131131
"-debug", arg_set (fun p -> { p with debug = true }), " Enable debug information for package detection"

0 commit comments

Comments
 (0)