This is an automated email from the git hooks/post-receive script.
ildumi pushed a commit to branch development
in repository libtool.
The following commit(s) were added to refs/heads/development by this push:
new 3153a145 libtool.m4: fix appending of -no_fixup_chains to
_lt_dar_allow_undefined
3153a145 is described below
commit 3153a145ecbd6220e6632fd61a9b83f2d527b559
Author: Ozkan Sezer <[email protected]>
AuthorDate: Sat Jun 29 17:51:56 2024 +0300
libtool.m4: fix appending of -no_fixup_chains to _lt_dar_allow_undefined
---
m4/libtool.m4 | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/m4/libtool.m4 b/m4/libtool.m4
index 31f1be04..5357a3d9 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -1089,9 +1089,10 @@ _LT_EOF
10.[[012]],*|,*powerpc*-darwin[[5-8]]*)
_lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined
${wl}suppress' ;;
*)
- _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup'
if test yes = "$lt_cv_support_no_fixup_chains"; then
- _lt_dar_allow_undefined='$_lt_dar_allow_undefined
$wl-no_fixup_chains'
+ _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup
$wl-no_fixup_chains'
+ else
+ _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup'
fi
;;
esac