mirror of
https://gitlab.freedesktop.org/xorg/lib/libxcb.git
synced 2026-01-14 09:10:22 +01:00
http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <ajax@redhat.com>
14 lines
209 B
Bash
Executable file
14 lines
209 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 $?
|
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
$srcdir/configure "$@"
|
|
fi
|