summaryrefslogtreecommitdiff
path: root/Xcode/libs/libs-change.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Xcode/libs/libs-change.sh')
-rwxr-xr-xXcode/libs/libs-change.sh13
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