From f738d498a8cd1b2e72836f597b7a4ae8e087afcc Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 24 Apr 2019 15:30:40 -0400 Subject: [PATCH 1/1] BSD friendliness. --- Makefile | 2 +- test/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7aa6fad..c1d6685 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ super-star-trek-$(VERS).tar.gz: $(SOURCES) sst.6 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 index 9c27e03..cf908be 100644 --- a/test/Makefile +++ b/test/Makefile @@ -4,9 +4,9 @@ PYTHON=python 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 -- 2.31.1