change_prefix.sh
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # ***************************************************************************
  3. # change_prefix.sh : allow to transfer a contrib dir
  4. # ***************************************************************************
  5. # Copyright (C) 2003 the VideoLAN team
  6. # $Id$
  7. #
  8. # Authors: Christophe Massiot <massiot@via.ecp.fr>
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; either version 2 of the License, or
  13. # (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License
  21. # along with this program; if not, write to the Free Software
  22. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23. # ***************************************************************************
  24. usage="Usage: $0 <directory> <prefix> <new_prefix>"
  25. LANG=C
  26. export LANG
  27. if test .$1 = .-h -o .$1 = .--help -o $# != 3; then
  28.   echo $usage
  29.   exit 1
  30. fi
  31. top_dir=`cd $1; pwd`
  32. prefix=$2
  33. new_prefix2=$3
  34. new_prefix=/$new_prefix2
  35. if test -z $prefix -o -z $new_prefix; then
  36.   echo $usage
  37.   exit 1
  38. fi
  39. cd $top_dir
  40. pwd
  41. files=`find . -type f`
  42. for file in $files; do 
  43.  if test ".`file $file | grep Mach-O`" != "." ; then
  44.     echo "Changing prefixes of '$file'"
  45.     islib=n
  46.     if test ".`file $file | grep 'dynamically linked shared library'`" != "." ; then
  47.       islib=y
  48.     fi
  49.     libs=`otool -L $file 2>/dev/null | grep $prefix | cut -d  -f 1`
  50.     first=y
  51.     for i in "" $libs; do
  52.       if ! test -z $i; then
  53.         if test $islib = y -a $first = y; then
  54.             install_name_tool -id `echo $i | sed -e "s,$prefix,$new_prefix,"` $file
  55.             command="install_name_tool -id `echo $i | sed -e "s,$prefix,$new_prefix,"` $file"
  56.             first=n
  57.         else
  58.             install_name_tool -change $i `echo $i | sed -e "s,$prefix,$new_prefix,"` $file
  59.             command="install_name_tool -change $i `echo $i | sed -e "s,$prefix,$new_prefix,"` $file"
  60.         fi
  61.         echo "executing '$command'"
  62.       fi
  63.     done
  64.   elif test ".`file $file | grep "text|shell"`" != "." ; then
  65.    echo "Fixing up shell/text file "$file""
  66.     cp $file $file.tmp
  67.     sed -e "s,$prefix,$new_prefix,g" < $file > $file.tmp
  68.     mv -f $file.tmp $file
  69.   fi
  70. done
  71. files=`find . -name *.la`
  72. for file in $files; do
  73.    echo "Fixing up .la $file"
  74.    cp $file $file.tmp
  75.    sed -e "s,$prefix,$new_prefix,g" < $file > $file.tmp
  76.    mv -f $file.tmp $file
  77. done