From 7e1bd4a058633c12e1dd157dc7669115d55fd5c0 Mon Sep 17 00:00:00 2001 From: Phil Burk Date: Sat, 26 Nov 2022 09:46:59 -0800 Subject: [PATCH] Makefile now handles spaces in the path (#122) Use quotes, not spaces. Fixes #121 --- platforms/unix/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/unix/Makefile b/platforms/unix/Makefile index dae12a0..6bf8441 100644 --- a/platforms/unix/Makefile +++ b/platforms/unix/Makefile @@ -100,7 +100,7 @@ $(PFDICAPP): $(PFINCLUDES) $(PFOBJS) # Build basic dictionary image by running newly built pforth and including "system.fth". $(PFORTHDIC): $(PFDICAPP) - wd=$$(pwd); (cd $(FTHDIR); $${wd}/$(PFDICAPP) -i system.fth) + wd=$$(pwd); (cd $(FTHDIR); "$${wd}/$(PFDICAPP)" -i system.fth) (cd $(FTHDIR); cat pforth.dic; rm -f pforth.dic) > $@ $(PFDICDAT): $(PFORTHDIC) $(PFDICAPP) -- 2.30.2