We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e0906 commit 2b672f1Copy full SHA for 2b672f1
1 file changed
flow/scripts/variables.mk
@@ -217,16 +217,5 @@ vars:
217
218
.PHONY: print-%
219
print-%:
220
- # HERE BE DRAGONS!
221
- #
222
- # We have to use /tmp. $(OBJECTS_DIR) may not exist
223
- # at $(file) expansion time, which is before commands are run
224
- # here, so we can't mkdir -p $(OBJECTS_DIR) either
225
226
- # We have to use $(file ...) because we want to be able
227
- # to print variables that contain newlines.
228
- $(eval TEMP_FILE := $(shell mktemp /tmp/print_tmp.XXXXXX))
229
- @$(file >$(TEMP_FILE),$($*))
230
- @echo -n "$*: "
231
- @cat $(TEMP_FILE)
232
- @rm -f $(TEMP_FILE)
+ $(info $*: $($*))
+ @true
0 commit comments