summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Smith <matt@offtopica.uk>2021-08-21 18:33:00 +0100
committerSam James <sam@gentoo.org>2021-08-25 03:30:31 +0100
commitaafac15fbdb713ae143a5f5d77e84f3393020ccf (patch)
tree133f0b3bc20ad75aa392da12b3f5fc500162765e /sys-fs/copyfs
parentsys-apps/pcmciautils: Don't use $D in pkg_setup (diff)
downloadgentoo-aafac15fbdb713ae143a5f5d77e84f3393020ccf.tar.gz
gentoo-aafac15fbdb713ae143a5f5d77e84f3393020ccf.tar.bz2
gentoo-aafac15fbdb713ae143a5f5d77e84f3393020ccf.zip
sys-fs/copyfs: Don't use $D in src_configure
Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Matt Smith <matt@offtopica.uk> Closes: https://github.com/gentoo/gentoo/pull/22067 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs/copyfs')
-rw-r--r--sys-fs/copyfs/copyfs-1.0.1-r1.ebuild10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
index ec53bab73be8..543302c45eb9 100644
--- a/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
+++ b/sys-fs/copyfs/copyfs-1.0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -33,10 +33,10 @@ src_prepare() {
eautoreconf
}
-src_configure() {
- econf --bindir="${D}/usr/bin" --mandir="${D}/usr/share/man"
-}
-
src_compile() {
emake CC=$(tc-getCC)
}
+
+src_install() {
+ emake bindir="${D}"/usr/bin mandir="${D}"/usr/share/man install
+}