aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.sh
blob: 4503c596f4a1829b522ecf386469e4cc6a9690d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

# bootstrap.sh - bootstrap the fetchmail build after a fresh subversion checkout
# (C) 2004  Matthias Andree -- GNU GPL V2

set -e
# sanity checks:
test -f fetchmail.h
test -f fetchmail.c
test -f Makefile.am
rm -rf autom4te.cache
echo
echo "Please stand by while generating files with autoreconf, this may"
echo "take a minute or two..."
echo
autoreconf -isv
echo
echo "You can now run ./configure and make as usual. See INSTALL for details."
echo