From 2a3ef06ad068f92b351858b7462d1ffce0b0439a Mon Sep 17 00:00:00 2001 From: Russell King Date: Sat, 22 Nov 2014 23:16:01 +0000 Subject: build: ensure m4 sub-directory is created Ensure autogen.sh creates the m4 sub-directory before running autoreconf, otherwise autotools fails. Signed-off-by: Russell King --- autogen.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/autogen.sh b/autogen.sh index c017353..8460a76 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,6 +9,7 @@ test -z "$srcdir" && srcdir=. ORIGDIR=`pwd` cd $srcdir +mkdir -p $srcdir/m4 autoreconf --install || exit 1 cd $ORIGDIR || exit $? -- cgit