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 3672B1382A4 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 938A8E0965; 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 11844E0965 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 9DD8E33FDBF 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 0835A963 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: <1465842000.5f7b403d1711dc5a053daefff7703f40605ecb6c.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.1-r1.ebuild 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: 5f7b403d1711dc5a053daefff7703f40605ecb6c 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: 99dec61a-ec60-46c4-b7df-58948653828f X-Archives-Hash: 8f6224a9ec6f710d2e90d77d55eef6cc commit: 5f7b403d1711dc5a053daefff7703f40605ecb6c Author: Mike Frysinger gentoo org> AuthorDate: Mon Jun 13 18:20:00 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Jun 13 18:20:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7b403d sys-libs/libunwind: clean up debug configure logic The upstream configure script has been fixed in these versions, so we don't need to workaround the misbehaving --disable-debug flag anymore. sys-libs/libunwind/libunwind-1.1-r1.ebuild | 4 +--- sys-libs/libunwind/libunwind-1.2_rc1.ebuild | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/sys-libs/libunwind/libunwind-1.1-r1.ebuild b/sys-libs/libunwind/libunwind-1.1-r1.ebuild index 5403e33..03557ac 100644 --- a/sys-libs/libunwind/libunwind-1.1-r1.ebuild +++ b/sys-libs/libunwind/libunwind-1.1-r1.ebuild @@ -42,8 +42,6 @@ src_prepare() { } src_configure() { - # do not $(use_enable) because the configure.in is broken and parses - # --disable-debug the same as --enable-debug. # https://savannah.nongnu.org/bugs/index.php?34324 # --enable-cxx-exceptions: always enable it, headers provide the interface # and on some archs it is disabled by default causing a mismatch between the @@ -58,7 +56,7 @@ src_configure() { $(use_enable lzma minidebuginfo) \ $(use_enable static-libs static) \ $(use_enable debug conservative_checks) \ - $(use debug && echo --enable-debug) + $(use_enable debug) } src_test() { diff --git a/sys-libs/libunwind/libunwind-1.2_rc1.ebuild b/sys-libs/libunwind/libunwind-1.2_rc1.ebuild index e3d819d..124f648 100644 --- a/sys-libs/libunwind/libunwind-1.2_rc1.ebuild +++ b/sys-libs/libunwind/libunwind-1.2_rc1.ebuild @@ -37,8 +37,6 @@ src_prepare() { } src_configure() { - # do not $(use_enable) because the configure.in is broken and parses - # --disable-debug the same as --enable-debug. # https://savannah.nongnu.org/bugs/index.php?34324 # --enable-cxx-exceptions: always enable it, headers provide the interface # and on some archs it is disabled by default causing a mismatch between the @@ -57,7 +55,7 @@ src_configure() { $(use_enable lzma minidebuginfo) \ $(use_enable static-libs static) \ $(use_enable debug conservative_checks) \ - $(use debug && echo --enable-debug) + $(use_enable debug) } src_test() {