mirror of
https://github.com/SwallowOS/xorg_lib_libxfont
synced 2025-11-06 07:39:18 +08:00
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>
18 lines
325 B
Bash
Executable File
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
|