Skip to content

Commit

Permalink
Fix configure (ocaml#13273)
Browse files Browse the repository at this point in the history
* Fix call to test in configure.ac

Forwarded: ocaml#13268

* Regenerate configure

* Update Changes

---------

Co-authored-by: Stéphane Glondu <[email protected]>
  • Loading branch information
glondu and Stéphane Glondu authored Jul 1, 2024
1 parent a37ec68 commit 7baee72
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,10 @@ _______________
platform.
(Stéphane Glondu, review by Miod Vallat and Vincent Laviron)

- #13273: Fix a call to test in configure.ac that was causing errors when
LDFLAGS contains several words.
(Stéphane Glondu, review by Miod Vallat)

OCaml 5.2.0 (13 May 2024)
-------------------------

Expand Down
2 changes: 1 addition & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2702,7 +2702,7 @@ ${mkdll_ldflags}"
],[
mkdll_ldflags='$(OC_DLL_LDFLAGS) $(LDFLAGS)'
mkdll_ldflags_exp="${oc_dll_ldflags}"
AS_IF([test -n ${LDFLAGS}],
AS_IF([test -n "${LDFLAGS}"],
[mkdll_ldflags_exp="$mkdll_ldflags_exp $LDFLAGS"])
mkexe_ldflags="\$(OC_LDFLAGS) \$(LDFLAGS)"
mkexe_ldflags_exp="${oc_ldflags} ${LDFLAGS}"
Expand Down

0 comments on commit 7baee72

Please sign in to comment.