From 33107962eb29d2d33fcf4bed429d5239c1b2d278 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Sat, 11 Feb 2023 12:00:55 +0100 Subject: [PATCH] package/pkg-waf: add one more missing $ Further fix on top on 9d1b223b91b0 (package/pkg-waf: add missing $). Repeat after me: all variables in an inner-package macro must be expanded, except for: parameters, pkgdir, and pkgname. Signed-off-by: Yann E. MORIN --- package/pkg-waf.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/pkg-waf.mk b/package/pkg-waf.mk index c3e965bdf3..0529bb6dda 100644 --- a/package/pkg-waf.mk +++ b/package/pkg-waf.mk @@ -42,7 +42,7 @@ define inner-waf-package # otherwise waf errors out with: # Waf script 'X' and library 'Y' do not match define WAF_PACKAGE_REMOVE_WAF_LIB - $(RM) -fr $$(@D)/waf $$(@D)/waflib + $$(RM) -fr $$(@D)/waf $$(@D)/waflib endef # We need host-python3 to run waf