Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/copyfs/
Date: Wed, 25 Aug 2021 02:30:47
Message-Id: 1629858631.aafac15fbdb713ae143a5f5d77e84f3393020ccf.sam@gentoo
1 commit: aafac15fbdb713ae143a5f5d77e84f3393020ccf
2 Author: Matt Smith <matt <AT> offtopica <DOT> uk>
3 AuthorDate: Sat Aug 21 17:33:00 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 25 02:30:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aafac15f
7
8 sys-fs/copyfs: Don't use $D in src_configure
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Matt Smith <matt <AT> offtopica.uk>
12 Closes: https://github.com/gentoo/gentoo/pull/22067
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 sys-fs/copyfs/copyfs-1.0.1-r1.ebuild | 10 +++++-----
16 1 file changed, 5 insertions(+), 5 deletions(-)
17
18 diff --git a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
19 index ec53bab73be..543302c45eb 100644
20 --- a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
21 +++ b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 +# Copyright 1999-2021 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=7
28 @@ -33,10 +33,10 @@ src_prepare() {
29 eautoreconf
30 }
31
32 -src_configure() {
33 - econf --bindir="${D}/usr/bin" --mandir="${D}/usr/share/man"
34 -}
35 -
36 src_compile() {
37 emake CC=$(tc-getCC)
38 }
39 +
40 +src_install() {
41 + emake bindir="${D}"/usr/bin mandir="${D}"/usr/share/man install
42 +}