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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DC12D158090 for ; Wed, 11 May 2022 02:07:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7A3BE096C; Wed, 11 May 2022 02:07:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEAC8E096C for ; Wed, 11 May 2022 02:07:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 86542341917 for ; Wed, 11 May 2022 02:07:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 38C81459 for ; Wed, 11 May 2022 02:07:48 +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: <1652234850.aa02b4b36b586a6d16b1d6509c1dbbdcc64046e3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/cdrtools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/cdrtools/cdrtools-3.02_alpha09-r4.ebuild X-VCS-Directories: app-cdr/cdrtools/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: aa02b4b36b586a6d16b1d6509c1dbbdcc64046e3 X-VCS-Branch: master Date: Wed, 11 May 2022 02:07:48 +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: 1648dcda-4fc8-40cb-950a-61c14890ff67 X-Archives-Hash: 19f12a0d474524649335a234f2e65651 commit: aa02b4b36b586a6d16b1d6509c1dbbdcc64046e3 Author: orbea riseup net> AuthorDate: Sun May 8 23:20:18 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 11 02:07:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa02b4b3 app-cdr/cdrtools: Don't quote "$(MAKE)" This issue is not related to slibtool, but for when setting arguments within the MAKE variable. Its standard to not quote it so that it doesn't blow up in these cases. Bug: https://bugs.gentoo.org/792759 Signed-off-by: orbea riseup.net> Closes: https://github.com/gentoo/gentoo/pull/25394 Signed-off-by: Sam James gentoo.org> app-cdr/cdrtools/cdrtools-3.02_alpha09-r4.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-cdr/cdrtools/cdrtools-3.02_alpha09-r4.ebuild b/app-cdr/cdrtools/cdrtools-3.02_alpha09-r4.ebuild index d9d1e5b51950..0bd54271fe20 100644 --- a/app-cdr/cdrtools/cdrtools-3.02_alpha09-r4.ebuild +++ b/app-cdr/cdrtools/cdrtools-3.02_alpha09-r4.ebuild @@ -84,6 +84,11 @@ src_prepare() { $(find ./ -type f -exec grep -l '^include.\+rules\.lib' '{}' '+') \ || die "sed rules" + # Don't quote $(MAKE) + sed -i -e 's|"$(MAKE)"|$(MAKE)|' \ + $(find ./RULES -type f -exec grep -l '"$(MAKE)"' '{}' '+') \ + || die "sed RULES/" + # Enable verbose build. sed -i -e '/@echo.*==>.*;/s:@echo[^;]*;:&set -x;:' \ RULES/*.rul RULES/rules.prg RULES/rules.inc \