[cvs] / xvidcore / build / generic / bootstrap.sh Repository:
ViewVC logotype

Diff of /xvidcore/build/generic/bootstrap.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3.2.1, Thu Mar 27 14:21:00 2003 UTC revision 1.3.2.2, Sun Sep 28 13:21:59 2003 UTC
# Line 19  Line 19 
19          $AUTOCONF --version 2>/dev/null 1>/dev/null          $AUTOCONF --version 2>/dev/null 1>/dev/null
20    
21      if [ $? -ne 0 ] ; then      if [ $? -ne 0 ] ; then
22          echo "Autoconf not found"          echo "'autoconf' not found"
23          exit -1          exit -1
24      fi      fi
25  fi  fi
# Line 39  Line 39 
39      exit -1      exit -1
40  fi  fi
41    
42    LIBTOOLIZE="libtoolize"
43    $LIBTOOLIZE --version 1>/dev/null 2>/dev/null
44    
45    if [ $? -ne 0 ] ; then
46        LIBTOOLIZE="glibtoolize"
47        $LIBTOOLIZE --version 1>/dev/null 2>/dev/null
48    
49        if [ $? -ne 0 ] ; then
50            echo "'libtoolize' not found"
51            exit -1
52        fi
53    fi
54    
55  ##############################################################################  ##############################################################################
56  # Bootstraps the configure script  # Bootstraps the configure script
57  ##############################################################################  ##############################################################################
# Line 50  Line 63 
63  automake -c -a 1>/dev/null 2>/dev/null  automake -c -a 1>/dev/null 2>/dev/null
64    
65  echo "Copying files provided by libtool"  echo "Copying files provided by libtool"
66  libtoolize -f -c 1>/dev/null 2>/dev/null  $LIBTOOLIZE -f -c 1>/dev/null 2>/dev/null
67    
68  echo "Removing files that are not needed"  echo "Removing files that are not needed"
69  rm -rf autom4*  rm -rf autom4*

Legend:
Removed from v.1.3.2.1  
changed lines
  Added in v.1.3.2.2

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4