# HG changeset patch # User Yuya Nishihara # Date 1492605243 -32400 # Node ID b838c069bf4e04dd9618731efd2b39742f1b6b67 # Parent f2ebe960998b515984a6fc4072b3611aedf79de7 make: fix indent of ifeq-endif ifeq() can't be a recipe. diff -r f2ebe960998b -r b838c069bf4e Makefile --- a/Makefile Sat Apr 08 12:48:20 2017 +0200 +++ b/Makefile Wed Apr 19 21:34:03 2017 +0900 @@ -34,9 +34,9 @@ all: help _check_hgroot: - ifeq ($(HGROOT),) - $(error HGROOT is not set to the root of the hg source tree) - endif +ifeq ($(HGROOT),) + $(error HGROOT is not set to the root of the hg source tree) +endif tests: _check_hgroot cd tests && $(PYTHON) $(HGTESTS)/run-tests.py $(TESTFLAGS)