mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-20 06:50:06 +01:00
16 lines
337 B
Bash
Executable file
16 lines
337 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
test -n "$srcdir" || srcdir=.
|
|
|
|
olddir=`pwd`
|
|
|
|
cd "$srcdir"
|
|
autoreconf -fvi || exit $?
|
|
|
|
cd "$olddir"
|
|
|
|
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
|
|
git config --local format.subjectPrefix "PATCH libevdev"
|
|
|
|
test -n "$NOCONFIGURE" || exec "$srcdir"/configure "$@"
|