aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-28 18:13:21 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-28 18:13:21 -0400
commiteaee19f7d4f9de5c2a65f0c7422f40a17725cfc5 (patch)
tree70dba4cf3c967f2e4c135f8e501cc854cc5773ef
parent85ef4c7e04b346163663b3a2c644d129a915449e (diff)
Fix ld flags to use commas instead of =
-rw-r--r--src/tomo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tomo.c b/src/tomo.c
index fc1e8e6b..03c5d6c9 100644
--- a/src/tomo.c
+++ b/src/tomo.c
@@ -66,7 +66,7 @@ static OptionalText_t
" -DGC_THREADS"
" -I$HOME/.local/include -I$HOME/.local/share/tomo/installed -I/usr/local/include"),
ldlibs = Text("-lgc -lm -lgmp -lunistring -ltomo"),
- ldflags = Text("-Wl,-rpath='$ORIGIN',-rpath=$HOME/.local/share/tomo/lib,-rpath=$HOME/.local/lib,-rpath=/usr/local/lib "
+ ldflags = Text("-Wl,-rpath,'$ORIGIN',-rpath,$HOME/.local/share/tomo/lib,-rpath,$HOME/.local/lib,-rpath,/usr/local/lib "
"-L$HOME/.local/lib -L$HOME/.local/share/tomo/lib -L/usr/local/lib"),
optimization = Text("2"),
cc = Text("cc");