From 54103cdf6b4739616cd39dd81734a2ea61e84b82 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 28 Mar 2025 18:20:31 -0400 Subject: Fix conditional flags --- src/tomo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/tomo.c b/src/tomo.c index 9222573b..4de70092 100644 --- a/src/tomo.c +++ b/src/tomo.c @@ -175,8 +175,8 @@ int main(int argc, char *argv[]) } #ifdef __APPLE__ - cflags = Texts(cflags, " -I/opt/homebrew/include"); - ldflags = Texts(cflags, " -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib"); + cflags = Texts(cflags, Text(" -I/opt/homebrew/include")); + ldflags = Texts(cflags, Text(" -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib")); #endif if (show_codegen.length > 0 && Text$equal_values(show_codegen, Text("pretty"))) -- cgit v1.2.3