From ddf90ffcf5ab96ef595192fe4c84d203a02c396e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 27 Mar 2020 14:33:32 -0400 Subject: [PATCH] Fix: remove duplicated AC_INIT directive MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The release script got confused by the new SPDX header which caused the AC_INIT directive to get duplicated. This causes the configure script to hang. Signed-off-by: Jérémie Galarneau Change-Id: If91e3db17ca46b697870ab37dc998b050ee7284c --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 81bd3d7a3..f3fc79054 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ +dnl SPDX-License-Identifier: GPL-2.0-only AC_PREREQ([2.64]) AC_INIT([lttng-tools],[2.12.0-rc2],[jeremie.galarneau@efficios.com],[],[https://lttng.org]) -AC_INIT([lttng-tools],[2.12.0-rc1],[jeremie.galarneau@efficios.com],[],[https://lttng.org]) AC_CONFIG_HEADERS([include/config.h]) AC_CONFIG_AUX_DIR([config]) -- 2.34.1