commit
bd354781d5
3 changed files with 8 additions and 6 deletions
@ -1,14 +1,17 @@ |
||||
#! /bin/sh |
||||
|
||||
srcdir=`dirname $0` |
||||
srcdir=`dirname "$0"` |
||||
test -z "$srcdir" && srcdir=. |
||||
|
||||
ORIGDIR=`pwd` |
||||
cd $srcdir |
||||
cd "$srcdir" |
||||
|
||||
autoreconf -v --install || exit 1 |
||||
cd $ORIGDIR || exit $? |
||||
cd "$ORIGDIR" || exit $? |
||||
|
||||
git config --local --get format.subjectPrefix >/dev/null 2>&1 || |
||||
git config --local format.subjectPrefix "PATCH xf86-input-evdev" |
||||
|
||||
if test -z "$NOCONFIGURE"; then |
||||
$srcdir/configure "$@" |
||||
exec "$srcdir"/configure "$@" |
||||
fi |
||||
|
||||
Loading…
Reference in new issue