changeset 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 f2ebe960998b
children b53343c8d692
files Makefile
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
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)