2006-11-25 09:46:32 -07:00
|
|
|
#! /bin/sh
|
|
|
|
|
2019-08-04 07:25:20 -06:00
|
|
|
srcdir=`dirname "$0"`
|
2006-11-25 09:46:32 -07:00
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
ORIGDIR=`pwd`
|
2019-08-04 07:25:20 -06:00
|
|
|
cd "$srcdir"
|
2006-11-25 09:46:32 -07:00
|
|
|
|
|
|
|
autoreconf -v --install || exit 1
|
2019-08-04 07:25:20 -06:00
|
|
|
cd "$ORIGDIR" || exit $?
|
|
|
|
|
|
|
|
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
|
|
|
|
git config --local format.subjectPrefix "PATCH libXdmcp"
|
2006-11-25 09:46:32 -07:00
|
|
|
|
2015-04-06 07:43:52 -06:00
|
|
|
if test -z "$NOCONFIGURE"; then
|
2019-08-04 07:25:20 -06:00
|
|
|
exec "$srcdir"/configure "$@"
|
2015-04-06 07:43:52 -06:00
|
|
|
fi
|