make: fix indent of ifeq-endif stable
authorYuya Nishihara <yuya@tcha.org>
Wed, 19 Apr 2017 21:34:03 +0900
branchstable
changeset 2269 b838c069bf4e
parent 2268 f2ebe960998b
child 2270 b53343c8d692
make: fix indent of ifeq-endif ifeq() can't be a recipe.
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)