diff options
author | Socapex <philippe_groarke@yahoo.ca> | 2012-12-04 02:05:39 -0500 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-04 14:56:32 +0300 |
commit | 1c66b29979f2a3a9740545b4dbecdb08ea002e92 (patch) | |
tree | 742855d3e699a03e6ed69dec24f2b5383b07db79 /Xcode/libs/libs-change.sh | |
parent | 4c188f4cd517b10940bb347e4bbb4c41005296d0 (diff) | |
download | plus-1c66b29979f2a3a9740545b4dbecdb08ea002e92.tar.gz plus-1c66b29979f2a3a9740545b4dbecdb08ea002e92.tar.bz2 plus-1c66b29979f2a3a9740545b4dbecdb08ea002e92.tar.xz plus-1c66b29979f2a3a9740545b4dbecdb08ea002e92.zip |
Included more library dependencies. Delete unnecessary .app.
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 |