From: Phil Burk Date: Sat, 26 Nov 2022 17:46:59 +0000 (-0800) Subject: Makefile now handles spaces in the path (#122) X-Git-Url: https://git.gag.com/?p=debian%2Fpforth;a=commitdiff_plain;h=7e1bd4a058633c12e1dd157dc7669115d55fd5c0 Makefile now handles spaces in the path (#122) Use quotes, not spaces. Fixes #121 --- 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)