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 3433B13829C for ; Mon, 13 Jun 2016 18:21:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B96F7E0967; Mon, 13 Jun 2016 18:21:51 +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 2F9C9E0967 for ; Mon, 13 Jun 2016 18:21:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A6A2D33FE7D for ; Mon, 13 Jun 2016 18:21:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A9CA2320 for ; Mon, 13 Jun 2016 18:21:46 +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: <1465842077.64648ac299e8986a3bcc0de2957573192e3047f6.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libunwind/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libunwind/libunwind-1.2_rc1.ebuild X-VCS-Directories: sys-libs/libunwind/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 64648ac299e8986a3bcc0de2957573192e3047f6 X-VCS-Branch: master Date: Mon, 13 Jun 2016 18:21:46 +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: d776e2ee-269c-4a84-99f4-bad2d481fbb9 X-Archives-Hash: ccadf884caadeacb12c9a0e48d8463ad commit: 64648ac299e8986a3bcc0de2957573192e3047f6 Author: Mike Frysinger gentoo org> AuthorDate: Mon Jun 13 18:21:17 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Jun 13 18:21:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64648ac2 sys-libs/libunwind: restore elibtoolize call sys-libs/libunwind/libunwind-1.2_rc1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys-libs/libunwind/libunwind-1.2_rc1.ebuild b/sys-libs/libunwind/libunwind-1.2_rc1.ebuild index 124f648..9d10213 100644 --- a/sys-libs/libunwind/libunwind-1.2_rc1.ebuild +++ b/sys-libs/libunwind/libunwind-1.2_rc1.ebuild @@ -34,6 +34,8 @@ src_prepare() { # These tests like to fail. bleh. echo 'int main(){return 0;}' > tests/Gtest-dyn1.c echo 'int main(){return 0;}' > tests/Ltest-dyn1.c + + elibtoolize } src_configure() { @@ -47,9 +49,9 @@ src_configure() { ac_cv_header_atomic_ops_h=$(usex libatomic) \ econf \ --enable-cxx-exceptions \ - --enable-coredump \ - --enable-ptrace \ - --enable-setjmp \ + --enable-coredump \ + --enable-ptrace \ + --enable-setjmp \ $(use_enable debug-frame) \ $(use_enable doc documentation) \ $(use_enable lzma minidebuginfo) \