Skip to content

Commit

Permalink
Merge #2133
Browse files Browse the repository at this point in the history
2133: fix: Use space-indent when calling functions outside of rules r=Hywan a=jubianchi

This should fix failures in:
* https://github.com/wasmerio/wasmer-nightly/pull/14/checks?check_run_id=1938612785
* https://github.com/wasmerio/wasmer-nightly/pull/13/checks?check_run_id=1938633577

This will unblock #2003

Co-authored-by: jubianchi <[email protected]>
  • Loading branch information
bors[bot] and jubianchi authored Feb 22, 2021
2 parents 5b2fa1a + 2bee060 commit d1bd9ea
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -300,15 +300,17 @@ endif

HOST_TARGET=$(shell rustup show | grep 'Default host: ' | cut -d':' -f2 | tr -d ' ')

ifneq (, $(LIBC))
$(info C standard library: $(bold)$(green)$(LIBC)$(reset))
endif

$(info -----------)
$(info $(bold)$(green)INFORMATION$(reset))
$(info -----------)
$(info )
$(info Host Target: `$(bold)$(green)$(HOST_TARGET)$(reset)`.)
ifneq (, $(LIBC))
# We use spaces instead of tabs to indent `$(info)`
# otherwise it's considered as a command outside a
# target and it will fail.
$(info C standard library: $(bold)$(green)$(LIBC)$(reset))
endif
$(info Enabled Compilers: $(bold)$(green)$(subst $(space),$(reset)$(comma)$(space)$(bold)$(green),$(compilers))$(reset).)
$(info Compilers + engines pairs (for testing): $(bold)$(green)${compilers_engines}$(reset))
$(info Cargo features:)
Expand Down

0 comments on commit d1bd9ea

Please sign in to comment.