From d8c5c4c94e4f23c2befe00238dd43aada1ef3164 Mon Sep 17 00:00:00 2001 From: Alexandre Montplaisir Date: Fri, 20 Apr 2012 02:33:19 -0400 Subject: [PATCH] better to run autoreconf than running every auto* tool by hand. Signed-off-by: Alexandre Montplaisir Signed-off-by: Julien Desfossez --- bootstrap | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/bootstrap b/bootstrap index c507425..7adcc4a 100755 --- a/bootstrap +++ b/bootstrap @@ -1,12 +1,9 @@ #! /bin/sh -set -x if [ ! -e config ]; then mkdir config fi -aclocal -libtoolize --force --copy -autoheader -automake --add-missing --copy -autoconf - +if [ ! -e m4 ]; then + mkdir m4 +fi +autoreconf -i -- 2.34.1