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 BAFD013832E for ; Fri, 5 Aug 2016 22:38:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8B99E0A72; Fri, 5 Aug 2016 22:38:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7AAA3E0A72 for ; Fri, 5 Aug 2016 22:38:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1357A340B4D for ; Fri, 5 Aug 2016 22:38:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6FC72442 for ; Fri, 5 Aug 2016 22:38:03 +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: <1470436585.7580ffa8e480ef7fbc31d1cb99d8057c74a141b4.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/php/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/php/php-5.6.24-r2.ebuild dev-lang/php/php-7.0.9-r2.ebuild X-VCS-Directories: dev-lang/php/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 7580ffa8e480ef7fbc31d1cb99d8057c74a141b4 X-VCS-Branch: master Date: Fri, 5 Aug 2016 22:38:03 +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-Archives-Salt: b194fb39-b292-428c-a37b-4d8e0f5e6914 X-Archives-Hash: 5e2a192382a4e91358f5e98e15d8fe0d commit: 7580ffa8e480ef7fbc31d1cb99d8057c74a141b4 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Aug 5 21:01:06 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Aug 5 22:36:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7580ffa8 dev-lang/php: use apxs from /usr/bin instead of /usr/sbin. Gentoo-Bug: 502384 Package-Manager: portage-2.2.28 dev-lang/php/php-5.6.24-r2.ebuild | 2 +- dev-lang/php/php-7.0.9-r2.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/php/php-5.6.24-r2.ebuild b/dev-lang/php/php-5.6.24-r2.ebuild index 7788578..6ba6a81 100644 --- a/dev-lang/php/php-5.6.24-r2.ebuild +++ b/dev-lang/php/php-5.6.24-r2.ebuild @@ -494,7 +494,7 @@ src_configure() { apache2) if [[ "${one_sapi}" == "${sapi}" ]] ; then - sapi_conf+=( --with-apxs2="${EPREFIX}/usr/sbin/apxs" ) + sapi_conf+=( --with-apxs2="${EPREFIX}/usr/bin/apxs" ) else sapi_conf+=( --without-apxs2 ) fi diff --git a/dev-lang/php/php-7.0.9-r2.ebuild b/dev-lang/php/php-7.0.9-r2.ebuild index 1e440f6..1a34de5 100644 --- a/dev-lang/php/php-7.0.9-r2.ebuild +++ b/dev-lang/php/php-7.0.9-r2.ebuild @@ -484,7 +484,7 @@ src_configure() { apache2) if [[ "${one_sapi}" == "${sapi}" ]] ; then - sapi_conf+=( --with-apxs2="${EPREFIX}/usr/sbin/apxs" ) + sapi_conf+=( --with-apxs2="${EPREFIX}/usr/bin/apxs" ) else sapi_conf+=( --without-apxs2 ) fi