blob: 4668adcf356a11f5ae6d24d698ab7106846846bd [file] [log] [blame]
Wichert Akkerman04057431999-06-10 14:38:31 +00001#! /bin/sh
2
Wichert Akkerman15dea971999-10-06 13:06:34 +00003PROJECT=strace
4
5DIE=0
6
7(autoconf --version) < /dev/null > /dev/null 2>&1 || {
8 echo
9 echo "You must have autoconf installed to compile $PROJECT."
10 echo "Download the appropriate package for your distribution,"
11 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
12 DIE=1
13}
14
15if test "$DIE" -eq 1; then
16 exit 1
17fi
18
Wichert Akkerman04057431999-06-10 14:38:31 +000019autoheader
20autoconf
Wichert Akkerman2f473da1999-11-01 19:53:31 +000021
Wichert Akkerman04057431999-06-10 14:38:31 +000022