commit: aa02b4b36b586a6d16b1d6509c1dbbdcc64046e3 Author: orbea <orbea <AT> riseup <DOT> net> AuthorDate: Sun May 8 23:20:18 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> 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 <orbea <AT> riseup.net> Closes: https://github.com/gentoo/gentoo/pull/25394 Signed-off-by: Sam James <sam <AT> 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 \
