summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2021-08-17 08:05:21 -0400
committerMichael Orlitzky <mjo@gentoo.org>2021-08-17 08:05:43 -0400
commit1fea0949fc7f9847dc0b291d47c3407444d5bb8e (patch)
tree92fa4a8fd8ce16c366ffb8c7075b462d8618bd64
parentVersion bump to 0.9.7 (diff)
downloadeselect-php-1fea0949fc7f9847dc0b291d47c3407444d5bb8e.tar.gz
eselect-php-1fea0949fc7f9847dc0b291d47c3407444d5bb8e.tar.bz2
eselect-php-1fea0949fc7f9847dc0b291d47c3407444d5bb8e.zip
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@gentoo.org>
-rw-r--r--configure.ac4
1 files 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"