Skip to content

Commit 0b40fdf

Browse files
authored
Merge pull request #3291 from Pinata-Consulting/make-print-issue-variables-fix
Make print issue variables fix
2 parents 10570d0 + 4069335 commit 0b40fdf

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)