Develop and Download Open Source Software

Browse CVS Repository

Contents of /satellite/satellite4/bootstrap.sh

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


Revision 1.1 - (show annotations) (download) (as text)
Wed Mar 31 08:15:05 2004 UTC (20 years ago) by orrisroot
Branch: MAIN
Branch point for: satellite4
File MIME type: text/x-sh
Initial revision

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 $AUTOHEADER
22 $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 (cd modules/gpm-gtk && sh ./bootstrap.sh)

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