# HG changeset patch # User Eric S. Raymond # Date 1556134240 14400 # Wed Apr 24 15:30:40 2019 -0400 # Node ID f366fe240bbc33c06deaf4f6fa0fc6d74ee13b97 # Parent 68004efc918a1b8a2f9bef918a57f3cf7378f677 BSD friendliness. diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ dist: sst-$(VERS).tar.gz check: #pylint - cd test; make --quiet + cd test; $(MAKE) --quiet COMMON_PYLINT = --rcfile=/dev/null --reports=n \ --msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" \ diff --git a/test/Makefile b/test/Makefile --- a/test/Makefile +++ b/test/Makefile @@ -4,9 +4,9 @@ all: @echo "With Python 2:" - @make -e PYTHON=python2 regress + @$(MAKE) -e PYTHON=python2 regress @echo "With Python 3:" - @make -e PYTHON=python3 regress + @$(MAKE) -e PYTHON=python3 regress @echo "No diff output is good news." .SUFFIXES: .log .chk