mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-14 19:12:21 +00:00
12 lines
195 B
Shell
Executable file
12 lines
195 B
Shell
Executable file
#! /bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
ORIGDIR=`pwd`
|
|
cd $srcdir
|
|
|
|
autoreconf -v --install || exit 1
|
|
cd $ORIGDIR || exit $?
|
|
|
|
$srcdir/configure --enable-maintainer-mode "$@"
|