mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-01 22:58:40 -04:00
13 lines
203 B
Bash
13 lines
203 B
Bash
|
|
#! /bin/sh
|
||
|
|
|
||
|
|
srcdir=`dirname $0`
|
||
|
|
test -z "$srcdir" && srcdir=.
|
||
|
|
|
||
|
|
ORIGDIR=`pwd`
|
||
|
|
cd $srcdir
|
||
|
|
|
||
|
|
autoreconf --force -v --install || exit 1
|
||
|
|
cd $ORIGDIR || exit $?
|
||
|
|
|
||
|
|
$srcdir/configure --enable-maintainer-mode "$@"
|