File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -33993,6 +33993,10 @@ for dep in \${libnames} ; do
33993
33993
changes="\${changes} -change \${4}/\${dep} \${3}/\${dep}"
33994
33994
done
33995
33995
for i in \${libnames} ; do
33996
+ if test -L \${1}/\${i}; then
33997
+ # skip symbolic links
33998
+ continue
33999
+ fi
33996
34000
${HOST_PREFIX}install_name_tool \${changes} -id \${3}/\${i} \${1}/\${i}
33997
34001
done
33998
34002
Original file line number Diff line number Diff line change @@ -4067,6 +4067,10 @@ for dep in \${libnames} ; do
4067
4067
changes="\${changes} -change \${4}/\${dep} \${3}/\${dep}"
4068
4068
done
4069
4069
for i in \${libnames} ; do
4070
+ if test -L \${1}/\${i}; then
4071
+ # skip symbolic links
4072
+ continue
4073
+ fi
4070
4074
${HOST_PREFIX}install_name_tool \${changes} -id \${3}/\${i} \${1}/\${i}
4071
4075
done
4072
4076
Original file line number Diff line number Diff line change @@ -323,6 +323,7 @@ wxOSX:
323
323
- Fix handling of nested modal dialogs (WakA, #24418).
324
324
- Fix translations when using zh-Hans-CN locale (#24396).
325
325
- Add filters support to wxFileDialog::ShowWindowModal() (Gammasoft, #24438).
326
+ - Fix installation on some Apple Silicon Macs (Thomas Holder, #23143, #24524).
326
327
327
328
wxQt:
328
329
You can’t perform that action at this time.
0 commit comments