strace/autogen.sh

23 lines
360 B
Bash
Raw Normal View History

1999-06-10 18:38:31 +04:00
#! /bin/sh
1999-10-06 17:06:34 +04:00
PROJECT=strace
DIE=0
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile $PROJECT."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE=1
}
if test "$DIE" -eq 1; then
exit 1
fi
1999-06-10 18:38:31 +04:00
autoheader
autoconf
1999-06-10 18:38:31 +04:00