From 4184c153ecff48228ebb06c628344cde4f32e397 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Mon, 18 Nov 2013 15:15:58 -0500 Subject: [PATCH] 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 --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "$@" -- 2.7.4