diff options
author | Matt Smith <matt@offtopica.uk> | 2021-08-21 18:27:12 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-08-25 03:30:30 +0100 |
commit | 9a74c25d008802d86abf1eabaf8cffe6ade08400 (patch) | |
tree | 6cd4278fc2983f46386ff09f1615139eef46c907 /sys-apps/pcmciautils | |
parent | net-misc/netkit-talk: EAPI 7 (diff) | |
download | gentoo-9a74c25d008802d86abf1eabaf8cffe6ade08400.tar.gz gentoo-9a74c25d008802d86abf1eabaf8cffe6ade08400.tar.bz2 gentoo-9a74c25d008802d86abf1eabaf8cffe6ade08400.zip |
sys-apps/pcmciautils: Don't use $D in pkg_setup
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Matt Smith <matt@offtopica.uk>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/pcmciautils')
-rw-r--r-- | sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild b/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild index 927b43039600..d27c8288425f 100644 --- a/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild +++ b/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild @@ -44,7 +44,6 @@ pkg_setup() { STRIP=true RANLIB="$(tc-getRANLIB)" OPTIMIZATION="${CFLAGS} ${CPPFLAGS}" - DESTDIR="${D}" ) use debug && append-cppflags -DDEBUG @@ -69,7 +68,7 @@ src_compile() { } src_install() { - emake "${mypcmciaopts[@]}" install + emake "${mypcmciaopts[@]}" DESTDIR="${D}" install dodoc doc/*.txt } |