xorg-xorgproto/renderproto/autogen.sh
2017-12-13 15:12:26 -08:00

17 lines
352 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 renderproto"
if test -z "$NOCONFIGURE"; then
exec "$srcdir"/configure "$@"
fi