diff --git a/configure b/configure index dd1e5dcc3fe8..299261168b05 100755 --- a/configure +++ b/configure @@ -33993,6 +33993,10 @@ for dep in \${libnames} ; do changes="\${changes} -change \${4}/\${dep} \${3}/\${dep}" done for i in \${libnames} ; do + if test -L \${1}/\${i}; then + # skip symbolic links + continue + fi ${HOST_PREFIX}install_name_tool \${changes} -id \${3}/\${i} \${1}/\${i} done diff --git a/configure.in b/configure.in index 06dd4baa2c67..26c007799dc6 100644 --- a/configure.in +++ b/configure.in @@ -4067,6 +4067,10 @@ for dep in \${libnames} ; do changes="\${changes} -change \${4}/\${dep} \${3}/\${dep}" done for i in \${libnames} ; do + if test -L \${1}/\${i}; then + # skip symbolic links + continue + fi ${HOST_PREFIX}install_name_tool \${changes} -id \${3}/\${i} \${1}/\${i} done diff --git a/docs/changes.txt b/docs/changes.txt index 13ae19bce410..dd427a822961 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -323,6 +323,7 @@ wxOSX: - Fix handling of nested modal dialogs (WakA, #24418). - Fix translations when using zh-Hans-CN locale (#24396). - Add filters support to wxFileDialog::ShowWindowModal() (Gammasoft, #24438). +- Fix installation on some Apple Silicon Macs (Thomas Holder, #23143, #24524). wxQt: