Commit 676be215 authored by Felix Paul Kühne's avatar Felix Paul Kühne

contrib: added debug to see what we're actually doing when changing the...

contrib: added debug to see what we're actually doing when changing the prefixes of the included binaries
parent 33acec15
...@@ -58,10 +58,13 @@ for file in $files; do ...@@ -58,10 +58,13 @@ for file in $files; do
if ! test -z $i; then if ! test -z $i; then
if test $islib = y -a $first = y; then if test $islib = y -a $first = y; then
install_name_tool -id `echo $i | sed -e "s,$prefix,$new_prefix,"` $file install_name_tool -id `echo $i | sed -e "s,$prefix,$new_prefix,"` $file
command="install_name_tool -id `echo $i | sed -e "s,$prefix,$new_prefix,"` $file"
first=n first=n
else else
install_name_tool -change $i `echo $i | sed -e "s,$prefix,$new_prefix,"` $file install_name_tool -change $i `echo $i | sed -e "s,$prefix,$new_prefix,"` $file
command="install_name_tool -change $i `echo $i | sed -e "s,$prefix,$new_prefix,"` $file"
fi fi
echo "executing '$command'"
fi fi
done done
elif test ".`file $file | grep \"text\|shell\"`" != "." ; then elif test ".`file $file | grep \"text\|shell\"`" != "." ; then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment