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 40BB9138334 for ; Wed, 13 Mar 2019 14:31:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29BAEE092A; Wed, 13 Mar 2019 14:31:33 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 00A2CE092A for ; Wed, 13 Mar 2019 14:31:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 5D55C335CF4 for ; Wed, 13 Mar 2019 14:31:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C505854D for ; Wed, 13 Mar 2019 14:31:28 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1552487474.860222a76acdf4a664a3bd829e17c04d24b416f9.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/e2fsprogs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild X-VCS-Directories: sys-fs/e2fsprogs/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 860222a76acdf4a664a3bd829e17c04d24b416f9 X-VCS-Branch: master Date: Wed, 13 Mar 2019 14:31:28 +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: 7f3b12b6-28b3-422f-894b-372504adc806 X-Archives-Hash: b90eba548bd603ed92406e7dfe228292 commit: 860222a76acdf4a664a3bd829e17c04d24b416f9 Author: Lars Wendler gentoo org> AuthorDate: Wed Mar 13 13:04:20 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Mar 13 14:31:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=860222a7 sys-fs/e2fsprogs: Make paths prefix-aware Bug: https://bugs.gentoo.org/679736 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild b/sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild index 3f75bb343da..4b80e4691fa 100644 --- a/sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild +++ b/sys-fs/e2fsprogs/e2fsprogs-1.45.0-r1.ebuild @@ -70,9 +70,9 @@ src_configure() { local myeconfargs=( --with-root-prefix="${EPREFIX%/}/" - --with-crond-dir="${EPREFIX}/etc/cron.d" + --with-crond-dir="${EPREFIX%/}/etc/cron.d" --with-systemd-unit-dir="$(systemd_get_systemunitdir)" - --with-udev-rules-dir="$(get_udevdir)/rules.d" + --with-udev-rules-dir="${EPREFIX%/}$(get_udevdir)/rules.d" --enable-symlink-install --enable-elf-shlibs $(tc-has-tls || echo --disable-tls)