From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D2D54158F56 for ; Tue, 17 Aug 2021 12:06:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8296E07F9; Tue, 17 Aug 2021 12:06:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8CDDE07F9 for ; Tue, 17 Aug 2021 12:06:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BCB41335C9A for ; Tue, 17 Aug 2021 12:06:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4879986F for ; Tue, 17 Aug 2021 12:06:10 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1629201943.1fea0949fc7f9847dc0b291d47c3407444d5bb8e.mjo@gentoo> Subject: [gentoo-commits] proj/eselect-php:master commit in: / X-VCS-Repository: proj/eselect-php X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 1fea0949fc7f9847dc0b291d47c3407444d5bb8e X-VCS-Branch: master Date: Tue, 17 Aug 2021 12:06:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b0c50dc4-86f7-4692-950a-ac29f355b16f X-Archives-Hash: 817ee2cbbb08c94ba0b6af533aa0f2ae commit: 1fea0949fc7f9847dc0b291d47c3407444d5bb8e Author: Michael Orlitzky gentoo org> AuthorDate: Tue Aug 17 12:05:21 2021 +0000 Commit: Michael Orlitzky gentoo 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 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"