commit: 1fea0949fc7f9847dc0b291d47c3407444d5bb8e
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 17 12:05:21 2021 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Aug 17 12:05:43 2021 +0000
URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=1fea0949
configure.ac: rename AC_HELP_STRING -> AS_HELP_STRING.
This change is suggested by "autoupdate" with autoconf-2.71.
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 84e8276..fc78d0b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([eselect-php], [0.9.7])
+AC_INIT([eselect-php],[0.9.7])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz tar-ustar])
@@ -34,7 +34,7 @@ AC_ARG_ENABLE(
AM_CONDITIONAL([FPM], [test x$fpm = xtrue])
piddir=${piddir="@LOCALSTATEDIR@"}
-AC_ARG_WITH(piddir, AC_HELP_STRING([--with-piddir=DIR],
+AC_ARG_WITH(piddir, AS_HELP_STRING([--with-piddir=DIR],
[where php-fpm PID files are placed [LOCALSTATEDIR]]),
if test x$withval != x -a x$withval != xno -a x$withval != xyes; then
piddir="$withval"