From 1aec6976ef761bf55021c3a962d5a79adbf6c5e6 Mon Sep 17 00:00:00 2001 From: Phil Burk Date: Sun, 27 Nov 2022 10:40:18 -0800 Subject: [PATCH] Change True to true in Makefile (#123) It was failing on Linux. --- platforms/unix/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/unix/Makefile b/platforms/unix/Makefile index 6bf8441..f178ea6 100644 --- a/platforms/unix/Makefile +++ b/platforms/unix/Makefile @@ -104,7 +104,7 @@ $(PFORTHDIC): $(PFDICAPP) (cd $(FTHDIR); cat pforth.dic; rm -f pforth.dic) > $@ $(PFDICDAT): $(PFORTHDIC) $(PFDICAPP) - @test -f $(CSRCDIR)/$(PFDICDAT) && echo WARNING old $(CSRCDIR)/$(PFDICDAT) would interfere || True + @test -f $(CSRCDIR)/$(PFDICDAT) && echo WARNING old $(CSRCDIR)/$(PFDICDAT) would interfere || true # Remove stray csrc/pfdicdat.h because it may accidentally get included. rm -f $(CSRCDIR)/$(PFDICDAT) echo 'include $(FTHDIR)/savedicd.fth SDAD BYE' | ./$(PFDICAPP) -d $(PFORTHDIC) -- 2.30.2