Files
xorg_lib_libxfont/autogen.sh
Peter Hutterer 75b9a15b51 autogen.sh: use exec instead of waiting for configure to finish
Syncs the invocation of configure with the one from the server.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
2017-01-26 12:05:22 +10:00

18 lines
325 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 ||
git config --local format.subjectPrefix "PATCH libXfont"
if test -z "$NOCONFIGURE"; then
exec $srcdir/configure "$@"
fi