2005-07-13 23:45:21 +02:00
|
|
|
#! /bin/sh
|
|
|
|
|
2015-03-09 13:00:52 +01:00
|
|
|
srcdir=`dirname "$0"`
|
2005-07-13 23:45:21 +02:00
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
ORIGDIR=`pwd`
|
2015-03-09 13:00:52 +01:00
|
|
|
cd "$srcdir"
|
2005-07-13 23:45:21 +02:00
|
|
|
|
|
|
|
autoreconf -v --install || exit 1
|
2015-03-09 13:00:52 +01:00
|
|
|
cd "$ORIGDIR" || exit $?
|
2005-07-13 23:45:21 +02:00
|
|
|
|
2017-01-26 05:00:22 +01:00
|
|
|
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
|
|
|
|
git config --local format.subjectPrefix "PATCH xf86-video-dummy"
|
|
|
|
|
2014-06-01 06:39:32 +02:00
|
|
|
if test -z "$NOCONFIGURE"; then
|
2015-03-09 13:00:52 +01:00
|
|
|
exec "$srcdir"/configure "$@"
|
2014-06-01 06:39:32 +02:00
|
|
|
fi
|