source: MondoRescue/trunk/mondo/bootstrap@ 783

Last change on this file since 783 was 507, checked in by bcornec, 18 years ago

merge -r489:506 $SVN_M/branches/stable

  • Property svn:keywords set to Id
File size: 905 bytes
Line 
1#!/bin/bash
2#
3# Built from scratch
4#
5amv=`automake --version | head -1 | awk '{print $(NF)}'`
6amvmj=`echo $amv | cut -d. -f1`
7amvmn=`echo $amv | cut -d. -f2`
8acv=`autoconf --version | head -1 | awk '{print $(NF)}'`
9acvmj=`echo $acv | cut -d. -f1`
10acvmn=`echo $acv | cut -d. -f2`
11if [ "$acvmj" -lt 2 ]; then
12 echo "Please get a version of autoconf >= 2.59"
13 exit -1
14fi
15if [ "$acvmn" -lt 59 ]; then
16 echo "Please get a version of autoconf >= 2.59"
17 exit -1
18fi
19if [ "$amvmj" -lt 1 ]; then
20 echo "Please get a version of automake >= 1.7"
21 exit -1
22fi
23if [ "$acvmn" -lt 7 ]; then
24 echo "Please get a version of automake >= 1.7"
25 exit -1
26fi
27
28make maintainer-clean >/dev/null 2>&1
29libtoolize -f -c --automake
30cp /usr/bin/gettextize .
31perl -pi -e 's~read dummy < /dev/tty~~' gettextize
32./gettextize -c -f --no-changelog < /dev/null
33rm -f gettextize
34aclocal -I m4
35autoheader
36automake
37autoconf
38rm -rf autom4te.cache
Note: See TracBrowser for help on using the repository browser.