Skip to content

Commit 895083b

Browse files
committed
configure.ac: Run autoupdate
Deal with the following warning: ``` configure.ac:25: warning: The macro `AC_HELP_STRING' is obsolete. configure.ac:25: You should run autoupdate. ``` Change-Id: Ia9f5431a9a4d6b5d204c6f6acd8eb71ab944505c Signed-off-by: Andrew Jeffery <[email protected]>
1 parent 400766f commit 895083b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

configure.ac

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Initialization
2-
AC_PREREQ([2.69])
3-
AC_INIT([libmctp], 0.11, [https://github.com/openbmc/libmctp/issues])
2+
AC_PREREQ([2.71])
3+
AC_INIT([libmctp],[0.11],[https://github.com/openbmc/libmctp/issues])
44
AC_CONFIG_HEADERS([config.h])
55
AC_CONFIG_MACRO_DIRS([m4])
66
AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror -Wno-portability foreign dist-xz])
@@ -23,8 +23,7 @@ PKG_PROG_PKG_CONFIG
2323
PKG_INSTALLDIR
2424

2525
AC_ARG_ENABLE([capture],
26-
[AC_HELP_STRING([--enable-capture],
27-
[Use libpcap to capture messages and packets])])
26+
[AS_HELP_STRING([--enable-capture],[Use libpcap to capture messages and packets])])
2827
AS_IF([test "x$enable_capture" = "xyes"],
2928
[PKG_CHECK_MODULES(pcap, libpcap,
3029
[AC_DEFINE([HAVE_PCAP], [1],

0 commit comments

Comments
 (0)