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 E619B138334 for ; Thu, 28 Jun 2018 19:40:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCF71E0907; Thu, 28 Jun 2018 19:40:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 8DDE1E0907 for ; Thu, 28 Jun 2018 19:40:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 029BC335C81 for ; Thu, 28 Jun 2018 19:40:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A57A300 for ; Thu, 28 Jun 2018 19:40:36 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1530214827.f54dcf820790b6bb9afff6f250cac53dc407935a.blueness@gentoo> Subject: [gentoo-commits] proj/musl:master commit in: net-misc/openssh/ X-VCS-Repository: proj/musl X-VCS-Files: net-misc/openssh/openssh-7.7_p1-r6.ebuild X-VCS-Directories: net-misc/openssh/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: f54dcf820790b6bb9afff6f250cac53dc407935a X-VCS-Branch: master Date: Thu, 28 Jun 2018 19:40:36 +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: 20ade2ec-ad1d-46ed-9654-38c602f8ca07 X-Archives-Hash: df18dc1794eda468183987ab84cc4b24 commit: f54dcf820790b6bb9afff6f250cac53dc407935a Author: Anthony G. Basile gentoo org> AuthorDate: Thu Jun 28 19:40:27 2018 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Thu Jun 28 19:40:27 2018 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=f54dcf82 net-misc/openssh: fix typo Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/openssh/openssh-7.7_p1-r6.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/openssh/openssh-7.7_p1-r6.ebuild b/net-misc/openssh/openssh-7.7_p1-r6.ebuild index 1422bf4..9eeea10 100644 --- a/net-misc/openssh/openssh-7.7_p1-r6.ebuild +++ b/net-misc/openssh/openssh-7.7_p1-r6.ebuild @@ -294,7 +294,7 @@ src_configure() { ) # stackprotect is broken on musl x86 - use elibc_musl && use x86 && myconf+=( --without-stackprotect) + use elibc_musl && use x86 && myconf+=( --without-stackprotect ) # The seccomp sandbox is broken on x32, so use the older method for now. #553748 use amd64 && [[ ${ABI} == "x32" ]] && myconf+=( --with-sandbox=rlimit )