Develop and Download Open Source Software

Browse CVS Repository

Annotation of /satellite/satellite4/bootstrap.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (hide annotations) (download) (as text)
Mon Oct 24 15:03:11 2005 UTC (18 years, 5 months ago) by orrisroot
Branch: MAIN
CVS Tags: RELEASE_4_2_3
Changes since 1.3: +8 -11 lines
File MIME type: text/x-sh
updated autotools versions.
supported 'make dist' command.

1 orrisroot 1.1 #!/bin/sh
2    
3 orrisroot 1.4 AUTOCONF=autoconf259
4     AUTOMAKE=automake19
5     ACLOCAL=aclocal19
6     AUTOHEADER=autoheader259
7     LIBTOOLIZE=libtoolize15
8 orrisroot 1.1
9     # host os check
10 orrisroot 1.4 UNAME=`uname -s`
11     if test X"$UNAME" != X"FreeBSD" ; then
12     echo "running host is not FreeBSD";
13 orrisroot 1.1 exit 1;
14     fi
15    
16     set -x
17     $ACLOCAL -I macros -I config
18 orrisroot 1.3 $AUTOHEADER -I macros -I config
19 orrisroot 1.1 $LIBTOOLIZE --automake --force --copy
20     #$ACLOCAL -I macros -I config
21     $AUTOMAKE --foreign --add-missing --copy
22     $AUTOCONF
23    
24     if [ -f config.h.in ]; then
25     touch config.h.in
26     fi
27    
28     if [ -f stamp-h.in ]; then
29     touch stamp-h.in
30     fi
31    
32     tmp=`find . -name 'autom4te.cache'`
33     if [ x"$tmp" != x"" ]; then
34     rm -rf $tmp;
35     fi
36     tmp=`find . -name 'configure.lineno'`
37     if [ x"$tmp" != x"" ]; then
38     rm -f $tmp;
39     fi
40     tmp=`find . -name '*~'`
41     if [ x"$tmp" != x"" ]; then
42     rm -f $tmp;
43     fi
44    
45 orrisroot 1.2 # (cd modules/gpm && sh ./bootstrap.sh)

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26