mirror of
https://gitlab.freedesktop.org/xorg/lib/libxcb.git
synced 2026-05-05 00:38:00 +02:00
Signed-off-by: Mihail Konev <k.mvc@ya.ru> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
17 lines
347 B
Bash
Executable file
17 lines
347 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 libxcb"
|
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
exec "$srcdir"/configure "$@"
|
|
fi
|