drm/autogen.sh

15 lines
232 B
Bash
Raw Normal View History

2005-07-12 18:13:12 -06:00
#! /bin/sh
2005-09-12 00:21:24 -06:00
srcdir=`dirname "$0"`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd "$srcdir"
autoreconf --force --verbose --install || exit 1
cd "$ORIGDIR" || exit $?
if test -z "$NOCONFIGURE"; then
"$srcdir"/configure "$@"
fi