mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 05:50:04 +01:00
Ensure we get all files installed when running autoreconf by passing --force to overwrite previously-generated ones, which fixes running it from tarballs. Also revert Peter's local changes to pass arguments to configure, all of which are the default now anyway, AIUI.
12 lines
203 B
Bash
Executable file
12 lines
203 B
Bash
Executable file
#! /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 "$@"
|