diff --git a/Changes b/Changes index a29255fd94a9..d1124e522ef7 100644 --- a/Changes +++ b/Changes @@ -321,6 +321,10 @@ _______________ (Miod Vallat, report by Vesa Karvonen, review by Gabriel Scherer and Xavier Leroy) +- #13209: Fix configure test that checks whether `ar` supports `@FILE` + arguments. + (Nicolás Ojeda Bär, report by Boris D.) + OCaml 5.2.0 (13 May 2024) ------------------------- diff --git a/configure b/configure index b5f5ed0079f5..a516967fb9c8 100755 --- a/configure +++ b/configure @@ -13766,7 +13766,7 @@ ocamlsrcdir=${ocamlsrcdir%X} # Whether ar supports @FILE arguments -case lt_cv_ar_at_file in #( +case $lt_cv_ar_at_file in #( no) : ar_supports_response_files=false ;; #( *) : diff --git a/configure.ac b/configure.ac index 7a07b367de9a..41032993ecf9 100644 --- a/configure.ac +++ b/configure.ac @@ -692,7 +692,7 @@ ocamlsrcdir=${ocamlsrcdir%X} # Whether ar supports @FILE arguments -AS_CASE([lt_cv_ar_at_file], +AS_CASE([$lt_cv_ar_at_file], [no], [ar_supports_response_files=false], [ar_supports_response_files=true])