From 708d728bb502ab1b97fb798203352484945e152c Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 27 May 2017 10:31:16 -0400 Subject: [PATCH] Simplify the test makefile. --- tests/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 \ -- 2.31.1