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 917061388C3 for ; Fri, 8 Jan 2016 21:50:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F8E1E0869; Fri, 8 Jan 2016 21:50:26 +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 898B421C004 for ; Fri, 8 Jan 2016 21:50:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6504934096F for ; Fri, 8 Jan 2016 21:50:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B9B4C79 for ; Fri, 8 Jan 2016 21:50:23 +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: <1452270284.ee46243308594a232f10f32b9243e91e608415b5.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: ee46243308594a232f10f32b9243e91e608415b5 X-VCS-Branch: master Date: Fri, 8 Jan 2016 21:50:23 +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: 73ba2b17-68fe-4863-af3f-63642febc835 X-Archives-Hash: 14ee78f16c004c3de8499588953543af commit: ee46243308594a232f10f32b9243e91e608415b5 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jan 8 16:24:44 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Jan 8 16:24:44 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=ee462433 Fix call to resolv_target() in set_phpdbg(). The first parameter to resolv_target should be the name of a SAPI. The current call passes "phpdbg" which is incorrect. Change it to "dbg". 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 d730e00..d868082 100644 --- a/src/php.eselect.in +++ b/src/php.eselect.in @@ -331,7 +331,7 @@ set_cgi() { } set_phpdbg() { - t=$(resolv_target phpdbg $1) + t=$(resolv_target dbg $1) [[ -z $t ]] && die -q "invalid target" @LN_S@ --force "../..$(get_active_libdir)/${t}/bin/phpdbg" \ "$(sapi_active_link_path dbg)" || \