diff options
Diffstat (limited to 'Xcode/libs/libs-change.sh')
-rwxr-xr-x | Xcode/libs/libs-change.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Xcode/libs/libs-change.sh b/Xcode/libs/libs-change.sh new file mode 100755 index 000000000..1a214d307 --- /dev/null +++ b/Xcode/libs/libs-change.sh @@ -0,0 +1,13 @@ +#!/bin/bash -x + +#uncomment to get list of files +# for i in *.dylib +# do +# echo -change /opt/local/lib/$i @executable_path/../SharedSupport/$i +# done > changes + + +for i in *.dylib +do +install_name_tool `cat changes` $i +done |