aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-11-25 18:00:06 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2017-11-25 18:00:06 +0000
commit8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a (patch)
tree15d339b62e98d5858a57aa787334e14f0e2f0ad7 /utils
parent6fc05db7c6de9a51beba754f12ff4ac32859977d (diff)
downloadqmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.tar.gz
qmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.tar.bz2
qmmp-8453224119a4c5ff7d47d9cd4924d0b1ccb99b3a.zip
copy 1.2 branch to trunk
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7772 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'utils')
-rwxr-xr-xutils/fix_mac_libs.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/utils/fix_mac_libs.sh b/utils/fix_mac_libs.sh
deleted file mode 100755
index d2d8c858b..000000000
--- a/utils/fix_mac_libs.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-#This script changes paths in installed binaries to relative. The first argument is path to .app package.
-
-echo Fixing paths to libraries inside $1...
-
-FINDDIR=$1/Contents
-IFS=$'\n'
-for i in `find $FINDDIR -type f -name \*.dylib -or -type f -name \*.so -or -type f -name qmmp` ; do
- install_name_tool -change libqmmp.0.dylib @executable_path/../Frameworks/libqmmp.0.dylib $i
- install_name_tool -change libqmmpui.0.dylib @executable_path/../Frameworks/libqmmpui.0.dylib $i
-done
-
-echo Fixing paths to libraries done.