From: Jérémie Galarneau Date: Fri, 27 Mar 2020 18:33:32 +0000 (-0400) Subject: Fix: remove duplicated AC_INIT directive X-Git-Tag: v2.12.0-rc3~1 X-Git-Url: https://git.liburcu.org/?a=commitdiff_plain;h=ddf90ffcf5ab96ef595192fe4c84d203a02c396e;p=lttng-tools.git Fix: remove duplicated AC_INIT directive 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 --- 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])