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 612E11395E2 for ; Wed, 7 Dec 2016 08:18:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE0CEE0CDC; Wed, 7 Dec 2016 08:18:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8AEFAE0CDC for ; Wed, 7 Dec 2016 08:18:32 +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 3737434123F for ; Wed, 7 Dec 2016 08:18:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03528492 for ; Wed, 7 Dec 2016 08:18:29 +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: <1481098558.8e5c3e67e5230051c3b6690ef8da675466e2f540.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bashdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild X-VCS-Directories: app-shells/bashdb/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 8e5c3e67e5230051c3b6690ef8da675466e2f540 X-VCS-Branch: master Date: Wed, 7 Dec 2016 08:18:29 +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: 88298e56-059d-48ec-b5cb-a130b28ab937 X-Archives-Hash: 924e70b2882bd408aa05c16138c958cf commit: 8e5c3e67e5230051c3b6690ef8da675466e2f540 Author: Mike Frysinger gentoo org> AuthorDate: Wed Dec 7 08:15:58 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Dec 7 08:15:58 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e5c3e67 app-shells/bashdb: hardcode path to debugger main #591994 This isn't a great solution, but considering bash hasn't changed its path in decades, it shouldn't be a big deal. It's better than relying on the output of `strings` on the /bin/bash binary. app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild b/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild index 63d4d41..4179d15 100644 --- a/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild +++ b/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild @@ -27,3 +27,9 @@ src_prepare() { # We don't install this, so don't bother building it. #468044 sed -i 's:texi2html:true:' doc/Makefile.in || die } + +src_configure() { + # This path matches the bash sources. If we ever change bash, + # we'll probably have to change this to match. #591994 + econf --with-dbg-main='$(PKGDATADIR)/bashdb-main.inc' +}