From: Markus Niebel <markus.nie...@tq-group.com>

The changed print rule broke most of the print functionality resulting
in no output / error return. Splitting the combinded rule into two targets
seems to fix this

Signed-off-by: Markus Niebel <markus.nie...@tq-group.com>
---
 rules/other/Toplevel.make | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/rules/other/Toplevel.make b/rules/other/Toplevel.make
index d8c9fc3..4287fb2 100644
--- a/rules/other/Toplevel.make
+++ b/rules/other/Toplevel.make
@@ -107,10 +107,12 @@ include $(PTX_DGEN_DEPS_POST)
 # just the "print" target
 # ----------------------------------------------------------------------------
 
-print-% /print-%: FORCE
+/print-%: FORCE
        $(if $(filter k,$(MAKEFLAGS)),,$($(if $(filter undefined,$(origin 
$(*))),$(error $(*) undefined))))
        @echo "$(if $(filter 1,$(PTXDIST_VERBOSE)),$(*)=)$($(*))"
 
+print-%: /print-%
+
 .PHONY: $(PHONY)
 
 # vim600:set foldmethod=marker:
-- 
1.9.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

Reply via email to