[applied] configure: Remove use of obsolete AC_CONFIG_HEADER

Message ID 875yozl4sr.fsf@redhat.com
State New
Headers
Series [applied] configure: Remove use of obsolete AC_CONFIG_HEADER |

Commit Message

Dodji Seketeli Feb. 28, 2022, 9:27 a.m. UTC
  I was getting a configure warning due to the use of the obsolete
AC_CONFIG_HEADER macro.  Fixed thus.

	* configure.ac: Replace the use of the obsolete AC_CONFIG_HEADER
	by AC_CONFIG_HEADERS.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/configure.ac b/configure.ac
index 019bdbac..fc35a31a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,7 @@  AC_INIT([libabigail],
 
 AC_PREREQ([2.63])
 AC_CONFIG_AUX_DIR([build-aux])
-AC_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_SRCDIR([README])
 AC_CONFIG_MACRO_DIR([m4])