From f887b6178de8d62f69607e75d3e929ed8b0dcf34 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 13 Mar 2026 14:19:05 +0200 Subject: use double quotes instead of single quotes + Apparently I forgot how shell quoting works, lol --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8489ed3..0485621 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ all: setup .PHONY: analyze analyze: setup - CFLAGS='$$CFLAGS -fanalyzer' SKIP_ANALYZER='-fno-analyzer' $(MAKE) + CFLAGS="$$CFLAGS -fanalyzer" SKIP_ANALYZER='-fno-analyzer' $(MAKE) .PHONY: setup setup: -- cgit v1.2.3