mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-20 05:40:05 +01:00
No point in waiting around until it finishes Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
12 lines
209 B
Bash
Executable file
12 lines
209 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"
|
|
test -n "$NOCONFIGURE" || exec "$srcdir"/configure "$@"
|