diff Makefile @ 2269:b838c069bf4e stable

make: fix indent of ifeq-endif ifeq() can't be a recipe.
author Yuya Nishihara <yuya@tcha.org>
date Wed, 19 Apr 2017 21:34:03 +0900
parents 934d70e3be97
children b53343c8d692
line wrap: on
line diff
--- 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)