Skip to content
Snippets Groups Projects
Commit 24a5a0b4 authored by Joe Garcia's avatar Joe Garcia
Browse files

fix bin links for rpath use

parent 703bf144
No related branches found
No related tags found
No related merge requests found
......@@ -2161,14 +2161,14 @@ relocate() {
cp -f sbin/rpath bin/rpath
for fn in bin/* ; do
ft=$(file "$fn" |grep "script text")
if [ -n "$ft" ]; then
if [ -f "$ft" ]; then
repair_script "${BASE}" "$fn"
fi
done
if [ -d Library/Frameworks/Python.framework ] ; then
for fn in Library/Frameworks/Python.framework/Versions/2.7/bin/*; do
ft=$(file "$fn" |grep "script text")
if [ -n "$ft" ]; then
if [ -f "$ft" ]; then
repair_script "${BASE}/Library/Frameworks/Python.framework/Versions/2.7" "$fn"
fi
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment