From: Eric S. Raymond Date: Sat, 27 May 2017 14:31:16 +0000 (-0400) Subject: Simplify the test makefile. X-Git-Tag: seed~35 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=708d728bb502ab1b97fb798203352484945e152c Simplify the test makefile. --- diff --git a/tests/Makefile b/tests/Makefile index 2fdb8aa..d200888 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -36,8 +36,7 @@ TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///') buildregress: adventure.data @for file in $(TESTLOADS); do \ echo "Remaking $${file}.chk"; \ - $(REPOSURGEON) advent <$${file}.log >$${file}.chk \ - 2>&1 || exit 1; \ + advent <$${file}.log >$${file}.chk 2>&1 || exit 1; \ done regress: adventure.data @for file in $(TESTLOADS); do \