From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C25D858973 for ; Wed, 20 Jan 2016 14:42:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22E8421C0CD; Wed, 20 Jan 2016 14:42:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C2CBC21C0CD for ; Wed, 20 Jan 2016 14:42:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 89BCA340813 for ; Wed, 20 Jan 2016 14:42:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC2A9C7A for ; Wed, 20 Jan 2016 14:42:37 +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: <1453300800.64f783dff3a2d62de670c8a5994d012751d2440e.mjo@gentoo> Subject: [gentoo-commits] proj/eselect-php:master commit in: src/ X-VCS-Repository: proj/eselect-php X-VCS-Files: src/php.eselect.in X-VCS-Directories: src/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 64f783dff3a2d62de670c8a5994d012751d2440e X-VCS-Branch: master Date: Wed, 20 Jan 2016 14:42:37 +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: 3748153a-c342-42af-98ae-42d803b7385e X-Archives-Hash: 36ecfa9bb856c963dcaea1699456592c commit: 64f783dff3a2d62de670c8a5994d012751d2440e Author: Michael Orlitzky gentoo org> AuthorDate: Wed Jan 20 14:40:00 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Wed Jan 20 14:40:00 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=64f783df Fix cleanup up libphp[57].so symlinks. The cleanup() action is supposed to remove the old links to libphp5.so and libphp7.so, but the pattern was accidentally quoted and thus nothing was removed. Unquote it so that those symlinks will actually be removed. Gentoo-Bug: 572436 src/php.eselect.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/php.eselect.in b/src/php.eselect.in index 9970520..b2a0dd5 100644 --- a/src/php.eselect.in +++ b/src/php.eselect.in @@ -199,7 +199,7 @@ cleanup_sapi() { fi if [[ "${sapi}" == "apache2" ]] ; then - rm -f "${EROOT}$(get_active_libdir)/apache2/modules/libphp[57].so" \ + rm -f "${EROOT}$(get_active_libdir)"/apache2/modules/libphp[57].so \ || die "failed to remove old libphp.so symlink" fi