diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-07-19 11:11:13 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-07-19 11:12:04 +0200 |
commit | 84044ec3f6fe9ea90f3601b880d96be989fb7d79 (patch) | |
tree | 7b5b53cc0ace4b701a8f7a37289f7d8827e3d81f /install-fail-tool | |
parent | 64a6892e8713c69e1f5ade929ec8035146de3f56 (diff) |
fix osx, app bundle now builds
Diffstat (limited to 'install-fail-tool')
-rwxr-xr-x | install-fail-tool | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/install-fail-tool b/install-fail-tool deleted file mode 100755 index 99f8fbdf..00000000 --- a/install-fail-tool +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -test -n "$1" || exit 1 - -dir="$1" - -for i in "$dir"/* "$dir"/*/*; do - { test -x "$i" && test -f "$i"; } || continue - echo ---- $i ---- - install_name_tool -id "@executable_path/$(basename -- "$i")" "$i" - - otool -L "$i" | awk '{ print $1 }' | - while read l; do - j="$(basename -- "$l")" - if test -e "$dir/$j"; then - install_name_tool -change "$l" "@executable_path/$j" "$i" - fi - done -done |