From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C08BF1580EB for ; Wed, 21 May 2025 16:45:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A5B1734072E for ; Wed, 21 May 2025 16:45:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9BCD21103DE; Wed, 21 May 2025 16:44:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 8EBFD1103DE for ; Wed, 21 May 2025 16:44:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2AE6434072E for ; Wed, 21 May 2025 16:44:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE1D7175E for ; Wed, 21 May 2025 16:44:57 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1747845838.3281a6d85434bd79f646a0f48a3d2e4ab464fe16.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/dwz/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/dwz/dwz-0.15-r4.ebuild sys-devel/dwz/dwz-0.15-r5.ebuild sys-devel/dwz/dwz-9999.ebuild X-VCS-Directories: sys-devel/dwz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3281a6d85434bd79f646a0f48a3d2e4ab464fe16 X-VCS-Branch: master Date: Wed, 21 May 2025 16:44:57 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 10949e00-abb4-49b5-9552-b272958771b5 X-Archives-Hash: a89c64593f9a39096549203f7507dc85 commit: 3281a6d85434bd79f646a0f48a3d2e4ab464fe16 Author: idealseal protonmail com> AuthorDate: Sat May 17 11:37:44 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 21 16:43:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3281a6d8 sys-devel/dwz: fix prefix installation Otherwise files would be installed outside of the prefix. Closes: https://bugs.gentoo.org/955951 Signed-off-by: idealseal protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/41110 Closes: https://github.com/gentoo/gentoo/pull/41110 Signed-off-by: Sam James gentoo.org> sys-devel/dwz/dwz-0.15-r4.ebuild | 6 +++--- sys-devel/dwz/dwz-0.15-r5.ebuild | 6 +++--- sys-devel/dwz/dwz-9999.ebuild | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sys-devel/dwz/dwz-0.15-r4.ebuild b/sys-devel/dwz/dwz-0.15-r4.ebuild index 96ce05dabb12..5ca87a13592a 100644 --- a/sys-devel/dwz/dwz-0.15-r4.ebuild +++ b/sys-devel/dwz/dwz-0.15-r4.ebuild @@ -65,13 +65,13 @@ src_compile() { export LIBS="${LIBS} $(${PKG_CONFIG} --libs obstack-standalone error-standalone)" fi - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" + emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" } src_test() { - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" check + emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" check } src_install() { - emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" install + emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" install } diff --git a/sys-devel/dwz/dwz-0.15-r5.ebuild b/sys-devel/dwz/dwz-0.15-r5.ebuild index 6d6533ae4965..5c18810b7493 100644 --- a/sys-devel/dwz/dwz-0.15-r5.ebuild +++ b/sys-devel/dwz/dwz-0.15-r5.ebuild @@ -65,13 +65,13 @@ src_compile() { export LIBS="${LIBS} $(${PKG_CONFIG} --libs obstack-standalone error-standalone)" fi - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" + emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" } src_test() { - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" check + emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" check } src_install() { - emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" install + emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" install } diff --git a/sys-devel/dwz/dwz-9999.ebuild b/sys-devel/dwz/dwz-9999.ebuild index 4fee7e3d80aa..41768393967f 100644 --- a/sys-devel/dwz/dwz-9999.ebuild +++ b/sys-devel/dwz/dwz-9999.ebuild @@ -59,13 +59,13 @@ src_compile() { export LIBS="${LIBS} $(${PKG_CONFIG} --libs obstack-standalone error-standalone)" fi - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" + emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" } src_test() { - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" check + emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" check } src_install() { - emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" install + emake DESTDIR="${D}" CFLAGS="${CFLAGS}" LIBS="${LIBS}" srcdir="${S}" prefix="${EPREFIX}/usr" install }