af0f808922
Signed-off-by: Mihail Konev <k.mvc@ya.ru>
18 lines
357 B
Bash
Executable File
18 lines
357 B
Bash
Executable File
#! /bin/sh
|
|
|
|
srcdir=`dirname "$0"`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
ORIGDIR=`pwd`
|
|
cd "$srcdir"
|
|
|
|
autoreconf -v --install || exit 1
|
|
cd "$ORIGDIR" || exit $?
|
|
|
|
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
|
|
git config --local format.subjectPrefix "PATCH xf86-video-dummy"
|
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
exec "$srcdir"/configure "$@"
|
|
fi
|