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 C7FC91580B9 for ; Wed, 25 Aug 2021 02:30:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0EBC5E086E; Wed, 25 Aug 2021 02:30:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 AF00EE0869 for ; Wed, 25 Aug 2021 02:30:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 835C8342AD0 for ; Wed, 25 Aug 2021 02:30:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2131C8D4 for ; Wed, 25 Aug 2021 02:30:43 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1629858630.9a74c25d008802d86abf1eabaf8cffe6ade08400.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcmciautils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild X-VCS-Directories: sys-apps/pcmciautils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9a74c25d008802d86abf1eabaf8cffe6ade08400 X-VCS-Branch: master Date: Wed, 25 Aug 2021 02:30:43 +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: 9fb72d50-252f-4fd3-94fa-58c616d74cd9 X-Archives-Hash: 45d08f2b9a787b7fb5b0d5eba4b2e158 commit: 9a74c25d008802d86abf1eabaf8cffe6ade08400 Author: Matt Smith offtopica uk> AuthorDate: Sat Aug 21 17:27:12 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Aug 25 02:30:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a74c25d 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 offtopica.uk> Signed-off-by: Sam James gentoo.org> sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild b/sys-apps/pcmciautils/pcmciautils-018_p8-r3.ebuild index 927b4303960..d27c8288425 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 }