mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
16 lines
284 B
Bash
16 lines
284 B
Bash
|
#!/bin/zsh
|
||
|
|
||
|
while [[ -n $1 ]]; do
|
||
|
FILE=$1
|
||
|
shift
|
||
|
|
||
|
otool -L ${FILE} | \
|
||
|
grep -v : | \
|
||
|
grep -v @executable_path | \
|
||
|
awk '/libQt/ { print $1 }' | { \
|
||
|
while read LIB ; do
|
||
|
install_name_tool -change ${LIB} @executable_path/libs/${LIB:t} ${FILE}
|
||
|
done
|
||
|
}
|
||
|
done
|