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 5BC29138331 for ; Tue, 26 Jul 2016 09:51:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D1B0E0B07; Tue, 26 Jul 2016 09:51:37 +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 5DF69E0AF5 for ; Tue, 26 Jul 2016 09:51:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 F3F40340C77 for ; Tue, 26 Jul 2016 09:51:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 590282416 for ; Tue, 26 Jul 2016 09:51:32 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1469526685.3f6a2bd81eb91481c2ccc0914773410e97c02e0d.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/nginx/nginx-1.10.1-r1.ebuild www-servers/nginx/nginx-1.11.2.ebuild X-VCS-Directories: www-servers/nginx/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 3f6a2bd81eb91481c2ccc0914773410e97c02e0d X-VCS-Branch: master Date: Tue, 26 Jul 2016 09:51:32 +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: dc43e763-d01b-4bf0-97ce-1cfdbcd2ac4d X-Archives-Hash: 0e6d0d19dcc0ee77e385056e8593b8c0 commit: 3f6a2bd81eb91481c2ccc0914773410e97c02e0d Author: Thomas Deutschmann whissi de> AuthorDate: Tue Jul 19 23:55:30 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Jul 26 09:51:25 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f6a2bd8 www-servers/nginx: Fix user/group configure argument (bug #588000) Bug: https://bugs.gentoo.org/588000 Package-Manager: portage-2.3.0 Signed-off-by: Lars Wendler gentoo.org> www-servers/nginx/nginx-1.10.1-r1.ebuild | 3 ++- www-servers/nginx/nginx-1.11.2.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/www-servers/nginx/nginx-1.10.1-r1.ebuild b/www-servers/nginx/nginx-1.10.1-r1.ebuild index 5912230..3c59016 100644 --- a/www-servers/nginx/nginx-1.10.1-r1.ebuild +++ b/www-servers/nginx/nginx-1.10.1-r1.ebuild @@ -554,7 +554,8 @@ src_configure() { tc-export CC if ! use prefix; then - myconf+=( --user=${PN}" "--group=${PN} ) + myconf+=( --user=${PN} ) + myconf+=( --group=${PN} ) fi ./configure \ diff --git a/www-servers/nginx/nginx-1.11.2.ebuild b/www-servers/nginx/nginx-1.11.2.ebuild index 0a7e068..471bfe0 100644 --- a/www-servers/nginx/nginx-1.11.2.ebuild +++ b/www-servers/nginx/nginx-1.11.2.ebuild @@ -560,7 +560,8 @@ src_configure() { tc-export CC if ! use prefix; then - myconf+=( --user=${PN}" "--group=${PN} ) + myconf+=( --user=${PN} ) + myconf+=( --group=${PN} ) fi ./configure \