From: Thomas Deutschmann Date: Tue, 19 Jul 2016 23:55:30 +0000 (+0200) Subject: www-servers/nginx: Fix user/group configure argument (bug #588000) X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=3f6a2bd81eb91481c2ccc0914773410e97c02e0d;p=gentoo.git 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 --- diff --git a/www-servers/nginx/nginx-1.10.1-r1.ebuild b/www-servers/nginx/nginx-1.10.1-r1.ebuild index 59122307314d..3c590167d25b 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 0a7e068169ff..471bfe0aff79 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 \