2009-06-06 11:52:23 -06:00
|
|
|
#! /bin/sh
|
|
|
|
|
2017-02-08 14:33:42 -07:00
|
|
|
srcdir=`dirname "$0"`
|
2009-06-06 11:52:23 -06:00
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
ORIGDIR=`pwd`
|
2017-02-08 14:33:42 -07:00
|
|
|
cd "$srcdir"
|
2009-06-06 11:52:23 -06:00
|
|
|
|
2012-06-10 10:30:14 -06:00
|
|
|
autopoint --force
|
|
|
|
AUTOPOINT='intltoolize --automake --copy' autoreconf -v --install --force || exit 1
|
2009-06-06 11:52:23 -06:00
|
|
|
|
2017-02-08 14:33:42 -07:00
|
|
|
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
|
|
|
|
git config --local format.subjectPrefix "PATCH xkeyboard-config"
|
|
|
|
|
|
|
|
cd "$ORIGDIR" || exit $?
|
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
|
|
exec "$srcdir"/configure "$@"
|
|
|
|
fi
|