# HG changeset patch # User Siddharth Agarwal # Date 2016-04-25 23:34:02 # Node ID c05cc1b958488b15f494bad16e004d25416fd5ff # Parent 38292b227debf6393dc1e2c6ff886f85f6673646 make: backout changeset 51f5fae84e43 Support for '!=' was only added in GNU Make 4.0, and CentOS versions as new as CentOS 7 only carry 3.82. I will leave figuring out compatibility with BSD make as an exercise for interested folks. diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ export PREFIX=/usr/local PYTHON=python -HGROOT != pwd +$(eval HGROOT := $(shell pwd)) HGPYTHONS ?= $(HGROOT)/build/pythons PURE= PYFILES:=$(shell find mercurial hgext doc -name '*.py')