mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2026-01-02 01:40:16 +01:00
The configure script is invoked from the build directory rather than from the source directory. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
13 lines
225 B
Bash
Executable file
13 lines
225 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
test -n "$srcdir" || srcdir=.
|
|
|
|
olddir=`pwd`
|
|
|
|
cd "$srcdir"
|
|
test -d m4 || mkdir m4
|
|
autoreconf -fvi || exit $?
|
|
|
|
cd "$olddir"
|
|
test -n "$NOCONFIGURE" || $srcdir/configure "$@"
|