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-apps/pcmciautils/
Date: Wed, 25 Aug 2021 02:30:46
Message-Id: 1629858630.9a74c25d008802d86abf1eabaf8cffe6ade08400.sam@gentoo
1 commit: 9a74c25d008802d86abf1eabaf8cffe6ade08400
2 Author: Matt Smith <matt <AT> offtopica <DOT> uk>
3 AuthorDate: Sat Aug 21 17:27:12 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 25 02:30:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a74c25d
7
8 sys-apps/pcmciautils: Don't use $D in pkg_setup
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Matt Smith <matt <AT> offtopica.uk>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild | 3 +--
15 1 file changed, 1 insertion(+), 2 deletions(-)
16
17 diff --git a/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild b/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild
18 index 927b4303960..d27c8288425 100644
19 --- a/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild
20 +++ b/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild
21 @@ -44,7 +44,6 @@ pkg_setup() {
22 STRIP=true
23 RANLIB="$(tc-getRANLIB)"
24 OPTIMIZATION="${CFLAGS} ${CPPFLAGS}"
25 - DESTDIR="${D}"
26 )
27
28 use debug && append-cppflags -DDEBUG
29 @@ -69,7 +68,7 @@ src_compile() {
30 }
31
32 src_install() {
33 - emake "${mypcmciaopts[@]}" install
34 + emake "${mypcmciaopts[@]}" DESTDIR="${D}" install
35
36 dodoc doc/*.txt
37 }