Skip to content

avoid calling show_config_info and show_config_variable when ARDUINO_… #579

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,19 @@ runscript_if_exists = \
space_pad_to = $(shell echo "$(1) " | head -c$(2))

# Call with some text, and a prefix tag if desired (like [AUTODETECTED]),
ifndef ARDUINO_QUIET
show_config_info = $(call arduino_output,- $(call space_pad_to,$(2),20) $(1))
else
show_config_info =
endif

# Call with the name of the variable, a prefix tag if desired (like [AUTODETECTED]),
# and an explanation if desired (like (found in $$PATH)
ifndef ARDUINO_QUIET
show_config_variable = $(call show_config_info,$(1) = $($(1)) $(3),$(2))
else
show_config_variable =
endif

# Just a nice simple visual separator
show_separator = $(call arduino_output,-------------------------)
Expand Down