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 DCD661382C5 for ; Fri, 18 May 2018 08:06:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08C6DE0903; Fri, 18 May 2018 08:06:46 +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 D8E7BE0903 for ; Fri, 18 May 2018 08:06:45 +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 EB873335C87 for ; Fri, 18 May 2018 08:06:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 575C12A1 for ; Fri, 18 May 2018 08:06:43 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1526630756.93ffaf8a823d13397792fd7c741daa3d8a4fdb11.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/strace/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/strace/strace-4.22.ebuild dev-util/strace/strace-9999.ebuild X-VCS-Directories: dev-util/strace/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 93ffaf8a823d13397792fd7c741daa3d8a4fdb11 X-VCS-Branch: master Date: Fri, 18 May 2018 08:06:43 +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: 5464814a-8778-49a1-acfd-5f0ff947ea0c X-Archives-Hash: 310201950b5190c5c265533b04f911ec commit: 93ffaf8a823d13397792fd7c741daa3d8a4fdb11 Author: Mike Frysinger chromium org> AuthorDate: Fri May 18 07:51:24 2018 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri May 18 08:05:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ffaf8a dev-util/strace: sync static fix w/9999 ebuild and document it #653292 Bug: https://bugs.gentoo.org/653292 dev-util/strace/strace-4.22.ebuild | 1 + dev-util/strace/strace-9999.ebuild | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-util/strace/strace-4.22.ebuild b/dev-util/strace/strace-4.22.ebuild index e7b555a3e2b..9fd23499e4d 100644 --- a/dev-util/strace/strace-4.22.ebuild +++ b/dev-util/strace/strace-4.22.ebuild @@ -44,6 +44,7 @@ src_prepare() { fi filter-lfs-flags # configure handles this sanely + # Add -pthread since strace wants -lrt for timer_create, and -lrt uses -lpthread. use static && append-ldflags -static -pthread export ac_cv_header_libaio_h=$(usex aio) diff --git a/dev-util/strace/strace-9999.ebuild b/dev-util/strace/strace-9999.ebuild index bcf676fc5d5..9a46478721f 100644 --- a/dev-util/strace/strace-9999.ebuild +++ b/dev-util/strace/strace-9999.ebuild @@ -44,7 +44,8 @@ src_prepare() { fi filter-lfs-flags # configure handles this sanely - use static && append-ldflags -static + # Add -pthread since strace wants -lrt for timer_create, and -lrt uses -lpthread. + use static && append-ldflags -static -pthread export ac_cv_header_libaio_h=$(usex aio) use elibc_musl && export ac_cv_header_stdc=no