mirror of
https://github.com/X11Libre/xf86-video-sunffb.git
synced 2026-03-24 01:25:07 +00:00
16 lines
331 B
Bash
Executable File
16 lines
331 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 $?
|
|
|
|
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
|
|
git config --local format.subjectPrefix "PATCH xf86-video-sunffb"
|
|
|
|
$srcdir/configure --enable-maintainer-mode "$@"
|