diff mbox series

[v4,1/10] configure: use AS_HELP_STRING instead of AC_HELP_STRING

Message ID 1508317209-23610-2-git-send-email-odpbot@yandex.ru
State New
Headers show
Series [v4,1/10] configure: use AS_HELP_STRING instead of AC_HELP_STRING | expand

Commit Message

Github ODP bot Oct. 18, 2017, 9 a.m. UTC
From: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>


AC_HELP_STRING was replaced loong time ago by AS_HELP_STRING (it was
before Autoconf 2.60). Let's use new macro instead of the obsolete one.

Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 235 (lumag:plat-def-2)
 ** https://github.com/Linaro/odp/pull/235
 ** Patch: https://github.com/Linaro/odp/pull/235.patch
 ** Base sha: ec0c3145fcafa09ae3a79875e7e07dd4794583cc
 ** Merge commit sha: 3ecb623742a4220d83aa8929d5eef60c1abdeb45
 **/
 configure.ac                            | 4 ++--
 m4/odp_openssl.m4                       | 2 +-
 platform/linux-generic/m4/odp_dpdk.m4   | 2 +-
 platform/linux-generic/m4/odp_netmap.m4 | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index 80bc3122a..dfea5d20e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -193,7 +193,7 @@  m4_include([./test/m4/configure.m4])
 # Set SDK install path
 ##########################################################################
 AC_ARG_WITH([sdk-install-path],
-AC_HELP_STRING([--with-sdk-install-path=DIR path to external libs and headers],
+AS_HELP_STRING([--with-sdk-install-path=DIR path to external libs and headers],
 	     [(or in the default path if not specified).]),
 [SDK_INSTALL_PATH=$withval SDK_INSTALL_PATH_=1],[SDK_INSTALL_PATH_=])
 
@@ -203,7 +203,7 @@  AC_SUBST(SDK_INSTALL_PATH)
 # Set the install directory for test binaries/scripts
 ##########################################################################
 AC_ARG_WITH([testdir],
-    [AC_HELP_STRING([--with-testdir=DIR], [installation directory for tests])],
+    [AS_HELP_STRING([--with-testdir=DIR], [installation directory for tests])],
 	[testdir=$withval],
 	[testdir=no])
 AS_IF([test "x$testdir" = "xyes"], [testdir=$libdir/odp/tests],
diff --git a/m4/odp_openssl.m4 b/m4/odp_openssl.m4
index 72568a8ae..428470dc6 100644
--- a/m4/odp_openssl.m4
+++ b/m4/odp_openssl.m4
@@ -10,7 +10,7 @@  AC_ARG_VAR([OPENSSL_STATIC_LIBS], [static linker flags for OpenSSL crypto librar
 # Set optional OpenSSL path
 ##########################################################################
 AC_ARG_WITH([openssl-path],
-[AC_HELP_STRING([--with-openssl-path=DIR],
+[AS_HELP_STRING([--with-openssl-path=DIR],
 	       [path to openssl libs and headers (use system path if not provided)])],
 [OPENSSL_CPPFLAGS="-I$withval/include"
 OPENSSL_LIBS="-L$withval/lib -lcrypto"],
diff --git a/platform/linux-generic/m4/odp_dpdk.m4 b/platform/linux-generic/m4/odp_dpdk.m4
index b65541651..9d90bbabd 100644
--- a/platform/linux-generic/m4/odp_dpdk.m4
+++ b/platform/linux-generic/m4/odp_dpdk.m4
@@ -3,7 +3,7 @@ 
 ##########################################################################
 pktio_dpdk_support=no
 AC_ARG_WITH([dpdk-path],
-AC_HELP_STRING([--with-dpdk-path=DIR   path to dpdk build directory]),
+AS_HELP_STRING([--with-dpdk-path=DIR   path to dpdk build directory]),
     [DPDK_PATH="$withval"
     DPDK_CPPFLAGS="-msse4.2 -isystem $DPDK_PATH/include"
     pktio_dpdk_support=yes],[])
diff --git a/platform/linux-generic/m4/odp_netmap.m4 b/platform/linux-generic/m4/odp_netmap.m4
index bd04824bb..24ed4bc1d 100644
--- a/platform/linux-generic/m4/odp_netmap.m4
+++ b/platform/linux-generic/m4/odp_netmap.m4
@@ -12,7 +12,7 @@  AC_ARG_ENABLE([netmap_support],
 # Set optional netmap path
 ##########################################################################
 AC_ARG_WITH([netmap-path],
-AC_HELP_STRING([--with-netmap-path=DIR   path to netmap root directory],
+AS_HELP_STRING([--with-netmap-path=DIR   path to netmap root directory],
                [(or in the default path if not specified).]),
     [NETMAP_PATH=$withval
     NETMAP_CPPFLAGS="-isystem $NETMAP_PATH/sys"