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@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/25394
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
orbea
2022-05-08 16:20:18 -07:00
committed by Sam James
parent 18950b1eba
commit aa02b4b36b

View File

@@ -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 \