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.6 - (hide annotations) (download) (as text)
Fri Aug 25 15:02:05 2006 UTC (17 years, 7 months ago) by orrisroot
Branch: MAIN
Changes since 1.5: +14 -7 lines
File MIME type: text/x-sh
splited basic algorightm from libsatellite.

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

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