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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 71F17158086 for ; Sat, 6 Nov 2021 05:57:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8D4C1E0896; Sat, 6 Nov 2021 05:57:38 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F06DEE0891 for ; Sat, 6 Nov 2021 05:57:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C2BB3430D3 for ; Sat, 6 Nov 2021 05:57:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D2391A3 for ; Sat, 6 Nov 2021 05:57:34 +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: <1636178132.07bbc4a98c82d44fc160cd9bb2cb915a0b7c6fba.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pep/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/pep/pep-2.8-r2.ebuild X-VCS-Directories: app-text/pep/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 07bbc4a98c82d44fc160cd9bb2cb915a0b7c6fba X-VCS-Branch: master Date: Sat, 6 Nov 2021 05:57:34 +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: fa3e588a-4b79-474b-91e6-32405974a00d X-Archives-Hash: 5d1f387fcf10437783515b580c1c955c commit: 07bbc4a98c82d44fc160cd9bb2cb915a0b7c6fba Author: Sam James gentoo org> AuthorDate: Sat Nov 6 05:55:32 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 6 05:55:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07bbc4a9 app-text/pep: use 'emake', not 'make' Signed-off-by: Sam James gentoo.org> app-text/pep/pep-2.8-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-text/pep/pep-2.8-r2.ebuild b/app-text/pep/pep-2.8-r2.ebuild index e38782d4b5f..288dacb2649 100644 --- a/app-text/pep/pep-2.8-r2.ebuild +++ b/app-text/pep/pep-2.8-r2.ebuild @@ -17,7 +17,7 @@ BDEPEND="app-arch/unzip" S=${WORKDIR} -# pep does not come with autconf so here's a patch to configure +# pep does not come with autoconf so here's a patch to configure # Makefile with the correct path PATCHES=( "${FILESDIR}"/${P}-gentoo.patch @@ -35,7 +35,7 @@ src_prepare() { src_compile() { # make man page too - make Doc/pep.1 || die "make man page failed" + emake Doc/pep.1 emake CC="$(tc-getCC)" }