Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fix_links.sh - github.com/mono/sharpsvn-binary.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b886af6eaba7e5cc7b81b9dc2e024e364a10e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

cd mac
for i in *; do
	install_name_tool -id "$i" "$i"
	for j in *; do
		test "$i" == "$j" && continue
		install_name_tool -change "/usr/local/lib/$j" "@loader_path/$j" "$i"
	done
done