Browse CVS Repository
Diff of /satellite/satellite4/bootstrap.sh
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 1 |
#!/bin/sh |
#!/bin/sh |
| 2 |
|
|
| 3 |
AUTOCONF=autoconf |
AUTOCONF=autoconf259 |
| 4 |
AUTOMAKE=automake |
AUTOMAKE=automake19 |
| 5 |
ACLOCAL=aclocal |
ACLOCAL=aclocal19 |
| 6 |
AUTOHEADER=autoheader |
AUTOHEADER=autoheader259 |
| 7 |
LIBTOOLIZE=libtoolize |
LIBTOOLIZE=libtoolize15 |
| 8 |
|
|
| 9 |
# host os check |
# host os check |
| 10 |
if [ ! -f /etc/fedora-release ]; then |
UNAME=`uname -s` |
| 11 |
echo "running host is not Fedora Core"; |
if test X"$UNAME" != X"FreeBSD" ; then |
| 12 |
exit 1; |
echo "running host is not FreeBSD"; |
|
fi |
|
|
if [ x"`cat /etc/fedora-release`" != x"Fedora Core release 1 (Yarrow)" ]; then |
|
|
echo "running host is not Frdora Core release 1"; |
|
| 13 |
exit 1; |
exit 1; |
| 14 |
fi |
fi |
| 15 |
|
|
|
|
Legend:
| Removed from v.1.3 |
|
| changed lines |
| |
Added in v.1.4 |
|
|
|