[vlc-devel] commit: contrib: added debug to see what we' re actually doing when changing the prefixes of the included binaries ( Felix Paul Kühne )
git version control
git at videolan.org
Mon Aug 10 12:42:17 CEST 2009
vlc | branch: 1.0-bugfix | Felix Paul Kühne <fkuehne at videolan.org> | Mon Aug 10 12:41:56 2009 +0200| [676be2150f2cc3f19092d3d1b2cde0b453d2612c] | committer: Felix Paul Kühne
contrib: added debug to see what we're actually doing when changing the prefixes of the included binaries
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=676be2150f2cc3f19092d3d1b2cde0b453d2612c
---
extras/contrib/change_prefix.sh | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/extras/contrib/change_prefix.sh b/extras/contrib/change_prefix.sh
index 9b1b004..98a3fd8 100755
--- a/extras/contrib/change_prefix.sh
+++ b/extras/contrib/change_prefix.sh
@@ -58,10 +58,13 @@ for file in $files; do
if ! test -z $i; then
if test $islib = y -a $first = y; then
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
else
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
+ echo "executing '$command'"
fi
done
elif test ".`file $file | grep \"text\|shell\"`" != "." ; then
More information about the vlc-devel
mailing list