File: autogen.sh

package info (click to toggle)
distcc 2.18.3-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,188 kB
  • ctags: 1,536
  • sloc: ansic: 12,829; sh: 3,183; python: 1,313; makefile: 493
file content (24 lines) | stat: -rwxr-xr-x 420 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/sh

# Run this script to build distcc from CVS.

## first try the default names
AUTOHEADER="autoheader"
AUTOCONF="autoconf"

if which $AUTOCONF > /dev/null
then
    :
else
    echo "$0: need autoconf 2.53 or later to build distcc from CVS" >&2
    exit 1
fi

echo "$0: running $AUTOHEADER"
$AUTOHEADER || exit 1

echo "$0: running $AUTOCONF"
$AUTOCONF || exit 1

echo "Now run ./configure and then make."
exit 0