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 36F71138334 for ; Wed, 3 Jul 2019 14:01:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D72EE08CA; Wed, 3 Jul 2019 14:01:28 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 21211E08CA for ; Wed, 3 Jul 2019 14:01:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6BD5D346EDB for ; Wed, 3 Jul 2019 14:01:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96FCC449 for ; Wed, 3 Jul 2019 14:01:24 +0000 (UTC) From: "Mike Gilbert" 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 Gilbert" Message-ID: <1562162478.c68d4a1625d2b8dd5c28c2c510514af8173ebfbc.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/util-linux/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/util-linux/util-linux-2.34-r2.ebuild sys-apps/util-linux/util-linux-9999.ebuild X-VCS-Directories: sys-apps/util-linux/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: c68d4a1625d2b8dd5c28c2c510514af8173ebfbc X-VCS-Branch: master Date: Wed, 3 Jul 2019 14:01:24 +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: 6ed58f52-b66d-4824-a9ce-9f6142e59c96 X-Archives-Hash: 0d4e487b9e5a9efc55cd9f19a372dcdd commit: c68d4a1625d2b8dd5c28c2c510514af8173ebfbc Author: Mike Gilbert gentoo org> AuthorDate: Wed Jul 3 13:54:52 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Jul 3 14:01:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c68d4a16 sys-apps/util-linux: pass --enable-fs-paths-extra always Bug: https://bugs.gentoo.org/689190 Package-Manager: Portage-2.3.67_p17_p668925, Repoman-2.3.16_p1_p668925 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/util-linux/util-linux-2.34-r2.ebuild | 8 +++++++- sys-apps/util-linux/util-linux-9999.ebuild | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/sys-apps/util-linux/util-linux-2.34-r2.ebuild b/sys-apps/util-linux/util-linux-2.34-r2.ebuild index 2b00a2ad6fa..89fd6458e7b 100644 --- a/sys-apps/util-linux/util-linux-2.34-r2.ebuild +++ b/sys-apps/util-linux/util-linux-2.34-r2.ebuild @@ -109,6 +109,7 @@ lfs_fallocate_test() { python_configure() { local myeconfargs=( + "${commonargs[@]}" --disable-all-programs --disable-bash-completion --without-systemdsystemunitdir @@ -136,8 +137,13 @@ multilib_src_configure() { export ac_cv_header_security_pam_misc_h=$(multilib_native_usex pam) #485486 export ac_cv_header_security_pam_appl_h=$(multilib_native_usex pam) #545042 - local myeconfargs=( + # configure args shared by python and non-python builds + local commonargs=( --enable-fs-paths-extra="${EPREFIX}/usr/sbin:${EPREFIX}/bin:${EPREFIX}/usr/bin" + ) + + local myeconfargs=( + "${commonargs[@]}" --with-bashcompletiondir="$(get_bashcompdir)" --without-python $(multilib_native_use_enable suid makeinstall-chown) diff --git a/sys-apps/util-linux/util-linux-9999.ebuild b/sys-apps/util-linux/util-linux-9999.ebuild index b15e6ad1a43..ef3a8b6b324 100644 --- a/sys-apps/util-linux/util-linux-9999.ebuild +++ b/sys-apps/util-linux/util-linux-9999.ebuild @@ -109,6 +109,7 @@ lfs_fallocate_test() { python_configure() { local myeconfargs=( + "${commonargs[@]}" --disable-all-programs --disable-bash-completion --without-systemdsystemunitdir @@ -136,8 +137,13 @@ multilib_src_configure() { export ac_cv_header_security_pam_misc_h=$(multilib_native_usex pam) #485486 export ac_cv_header_security_pam_appl_h=$(multilib_native_usex pam) #545042 - local myeconfargs=( + # configure args shared by python and non-python builds + local commonargs=( --enable-fs-paths-extra="${EPREFIX}/usr/sbin:${EPREFIX}/bin:${EPREFIX}/usr/bin" + ) + + local myeconfargs=( + "${commonargs[@]}" --with-bashcompletiondir="$(get_bashcompdir)" --without-python $(multilib_native_use_enable suid makeinstall-chown)