Skip to content

Commit

Permalink
makefile: Improve error message when LEDGER_ENABLED=True & no gcc (#2008
Browse files Browse the repository at this point in the history
)

Closes #2005
  • Loading branch information
ValarDragon authored and Federico Kunze committed Aug 15, 2018
1 parent 14cb82d commit 478c60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ci: get_tools get_vendor_deps install test_cover test_lint test
check-ledger:
ifeq ($(LEDGER_ENABLED),true)
ifndef GCC
$(error "gcc not installed for ledger support, please install")
$(error "gcc not installed for ledger support, please install or set LEDGER_ENABLED to false in the Makefile")
endif
else
TMP_BUILD_TAGS := $(BUILD_TAGS)
Expand Down

0 comments on commit 478c60e

Please sign in to comment.