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.3 - (hide annotations) (download) (as text)
Thu Mar 3 14:08:49 2005 UTC (19 years, 1 month ago) by orrisroot
Branch: MAIN
CVS Tags: RELEASE_4_2_2
Changes since 1.2: +1 -1 lines
File MIME type: text/x-sh
added depending library path.

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

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