[PATCH] build: stop running aclocal manually

The autoreconf script will already run aclocal for us, so there's no need todo that ahead of time. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- autogen.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 671dd63eb6..4e1bbceb0a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -15,7 +15,6 @@ cd "$srcdir" git submodule update --init || exit 1 -aclocal --install || exit 1 autoreconf --verbose --force --install || exit 1 if test "x$1" = "x--system"; then -- 2.24.1

On Mon, Feb 24, 2020 at 05:50:17PM +0000, Daniel P. Berrangé wrote:
The autoreconf script will already run aclocal for us, so there's no need todo that ahead of time.
s/todo/to do/
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- autogen.sh | 1 - 1 file changed, 1 deletion(-)
Neat, that's 3.5 s for free. Reviewed-by: Ján Tomko <jtomko@redhat.com> Jano
participants (2)
-
Daniel P. Berrangé
-
Ján Tomko