commit 239e16420ea1b809a413abc8ca897c31c8c175cb
parent 920a4b8795b40fb206c04d7d99e525d5d1ccd1ba
Author: Josiah Frentsos <jfrent@tilde.team>
Date: Tue, 3 Oct 2023 10:08:35 -0400
Makefile: Fix quoting of $(VERSION)
Signed-off-by: Josiah Frentsos <jfrent@tilde.team>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -10,7 +10,7 @@ all: $(BINOUT)/hare $(BINOUT)/harec2 $(BINOUT)/haredoc docs
HARE_DEFINES = \
-D PLATFORM:str='"$(PLATFORM)"' \
-D ARCH:str='"$(ARCH)"' \
- -D VERSION:str='"$(VERSION)"' \
+ -D VERSION:str="\"$(VERSION)\"" \
-D HAREPATH:str='"$(HAREPATH)"' \
-D AARCH64_AS:str='"$(AARCH64_AS)"' \
-D AARCH64_CC:str='"$(AARCH64_CC)"' \