diff options
author | Russell King <rmk@arm.linux.org.uk> | 2014-11-22 23:16:01 +0000 |
---|---|---|
committer | Russell King <rmk@arm.linux.org.uk> | 2014-11-22 23:17:48 +0000 |
commit | 2a3ef06ad068f92b351858b7462d1ffce0b0439a (patch) | |
tree | e2606312f6975301775250c3512a14026ba79a60 | |
parent | fe99147dba758c0c140e88c04212a24074debc68 (diff) |
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 <rmk@arm.linux.org.uk>
-rwxr-xr-x | autogen.sh | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -9,6 +9,7 @@ test -z "$srcdir" && srcdir=. ORIGDIR=`pwd` cd $srcdir +mkdir -p $srcdir/m4 autoreconf --install || exit 1 cd $ORIGDIR || exit $? |