autogen.sh revision 35c4bbdf
1#! /bin/sh
2
3srcdir=`dirname "$0"`
4test -z "$srcdir" && srcdir=.
5
6ORIGDIR=`pwd`
7cd "$srcdir"
8
9autoreconf --force -v --install || exit 1
10cd "$ORIGDIR" || exit $?
11
12git config --local --get format.subjectPrefix ||
13    git config --local format.subjectPrefix "PATCH xserver"
14
15if test -z "$NOCONFIGURE"; then
16    exec "$srcdir"/configure "$@"
17fi
18