From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1148176-garchives=archives.gentoo.org@lists.gentoo.org> 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 4D51A138350 for <garchives@archives.gentoo.org>; Mon, 24 Feb 2020 18:48:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8647BE0986; Mon, 24 Feb 2020 18:48:42 +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 6E860E0986 for <gentoo-commits@lists.gentoo.org>; Mon, 24 Feb 2020 18:48:42 +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 6613234F1DD for <gentoo-commits@lists.gentoo.org>; Mon, 24 Feb 2020 18:48:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40599108 for <gentoo-commits@lists.gentoo.org>; Mon, 24 Feb 2020 18:48:39 +0000 (UTC) From: "Brian Evans" <grknight@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" <grknight@gentoo.org> Message-ID: <1582570087.378ba786e290393c1de7665bd8ddb576451d12f4.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/php/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/php/php-7.2.28.ebuild dev-lang/php/php-7.3.15.ebuild dev-lang/php/php-7.4.3.ebuild X-VCS-Directories: dev-lang/php/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 378ba786e290393c1de7665bd8ddb576451d12f4 X-VCS-Branch: master Date: Mon, 24 Feb 2020 18:48:39 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: baa1b42a-91d6-4c24-acf3-3d739d7ffd74 X-Archives-Hash: 82f8595cb31faca652ab0dcc44bcf5a3 commit: 378ba786e290393c1de7665bd8ddb576451d12f4 Author: Brian Evans <grknight <AT> gentoo <DOT> org> AuthorDate: Mon Feb 24 18:48:07 2020 +0000 Commit: Brian Evans <grknight <AT> gentoo <DOT> org> CommitDate: Mon Feb 24 18:48:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378ba786 dev-lang/php: Make opcache active symlink relative Signed-off-by: Brian Evans <grknight <AT> gentoo.org> dev-lang/php/php-7.2.28.ebuild | 2 +- dev-lang/php/php-7.3.15.ebuild | 2 +- dev-lang/php/php-7.4.3.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lang/php/php-7.2.28.ebuild b/dev-lang/php/php-7.2.28.ebuild index ff4a8f69f89..7df10c98a4a 100644 --- a/dev-lang/php/php-7.2.28.ebuild +++ b/dev-lang/php/php-7.2.28.ebuild @@ -194,7 +194,7 @@ php_install_ini() { elog "Adding opcache to $PHP_EXT_INI_DIR" echo "zend_extension=${PHP_DESTDIR}/$(get_libdir)/opcache.so" >> \ "${D}/${PHP_EXT_INI_DIR}"/opcache.ini - dosym "${PHP_EXT_INI_DIR#${EPREFIX}}/opcache.ini" \ + dosym "../ext/opcache.ini" \ "${PHP_EXT_INI_DIR_ACTIVE#${EPREFIX}}/opcache.ini" fi diff --git a/dev-lang/php/php-7.3.15.ebuild b/dev-lang/php/php-7.3.15.ebuild index 097d4f65981..26c1bf2cc49 100644 --- a/dev-lang/php/php-7.3.15.ebuild +++ b/dev-lang/php/php-7.3.15.ebuild @@ -195,7 +195,7 @@ php_install_ini() { elog "Adding opcache to $PHP_EXT_INI_DIR" echo "zend_extension=${PHP_DESTDIR}/$(get_libdir)/opcache.so" >> \ "${D}/${PHP_EXT_INI_DIR}"/opcache.ini - dosym "${PHP_EXT_INI_DIR#${EPREFIX}}/opcache.ini" \ + dosym "../ext/opcache.ini" \ "${PHP_EXT_INI_DIR_ACTIVE#${EPREFIX}}/opcache.ini" fi diff --git a/dev-lang/php/php-7.4.3.ebuild b/dev-lang/php/php-7.4.3.ebuild index bc92aadcad5..13020f6424e 100644 --- a/dev-lang/php/php-7.4.3.ebuild +++ b/dev-lang/php/php-7.4.3.ebuild @@ -185,7 +185,7 @@ php_install_ini() { elog "Adding opcache to $PHP_EXT_INI_DIR" echo "zend_extension=${PHP_DESTDIR}/$(get_libdir)/opcache.so" >> \ "${D}/${PHP_EXT_INI_DIR}"/opcache.ini - dosym "${PHP_EXT_INI_DIR#${EPREFIX}}/opcache.ini" \ + dosym "../ext/opcache.ini" \ "${PHP_EXT_INI_DIR_ACTIVE#${EPREFIX}}/opcache.ini" fi