mirror of
https://salsa.debian.org/xorg-team/lib/pixman
synced 2025-08-30 08:18:46 +00:00
13 lines
195 B
Bash
Executable File
13 lines
195 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 $?
|
|
|
|
$srcdir/configure --enable-maintainer-mode "$@"
|