Skip to content

Commit 4069335

Browse files
committed
make: print-ISSUE_VARIABLES now works
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 2688092 commit 4069335

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

flow/scripts/variables.mk

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,4 +214,8 @@ vars:
214214

215215
.PHONY: print-%
216216
# Print any variable, for instance: make print-DIE_AREA
217-
print-% : ; @echo "$* = $($*)"
217+
print-%:
218+
$(file >$(OBJECTS_DIR)/print_tmp_$$,$($*))
219+
@echo -n "$* = "
220+
@cat $(OBJECTS_DIR)/print_tmp_$$
221+
@rm $(OBJECTS_DIR)/print_tmp_$$

0 commit comments

Comments
 (0)