lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 10 lines 358 B view raw
1fixGprProjectDarwinRpath() { 2 for f in $(find $out -type f -executable); do 3 install_name_tool -id $f $f || true 4 for rpath in $(otool -L $f | grep @rpath | awk '{print $1}'); do 5 install_name_tool -change $rpath ${!outputLib}/lib/$(basename $rpath) $f || true 6 done 7 done 8} 9 10preFixupPhases+=" fixGprProjectDarwinRpath"