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 cwgoes committed Aug 13, 2018
1 parent 36b54e1 commit 1854430
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 1854430

Please sign in to comment.