mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 05:40:04 +01:00
No point in waiting for it here, might as well pass the baton. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13 lines
332 B
Bash
Executable file
13 lines
332 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
test -n "$srcdir" || srcdir=.
|
|
(
|
|
cd "$srcdir" &&
|
|
autoreconf --force -v --install
|
|
) || exit
|
|
|
|
git config --local --get format.subjectPrefix >/dev/null 2>&1 ||
|
|
git config --local format.subjectPrefix "PATCH libinput"
|
|
|
|
test -n "$NOCONFIGURE" || exec "$srcdir/configure" "$@"
|