libevdev/autogen.sh
Peter Hutterer b13d67af9b autogen.sh: use exec for configure
No point in waiting around until it finishes

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-01-26 14:23:18 +10:00

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 "$@"