From: Gaetan Nadon Date: Mon, 18 Nov 2013 20:15:58 +0000 (-0500) Subject: autogen.sh: fix broken out-of-source tree building X-Git-Tag: libevdev-0.5~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4184c153ecff48228ebb06c628344cde4f32e397;p=platform%2Fupstream%2Flibevdev.git autogen.sh: fix broken out-of-source tree building The configure script is invoked from the build directory rather than from the source directory. Signed-off-by: Gaetan Nadon Signed-off-by: Peter Hutterer --- diff --git a/autogen.sh b/autogen.sh index cf2c610..3a7c5eb 100755 --- a/autogen.sh +++ b/autogen.sh @@ -10,4 +10,4 @@ test -d m4 || mkdir m4 autoreconf -fvi || exit $? cd "$olddir" -test -n "$NOCONFIGURE" || ./configure "$@" +test -n "$NOCONFIGURE" || $srcdir/configure "$@"