aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2019-02-02 23:14:26 +0000
committerGitHub <noreply@github.com>2019-02-02 23:14:26 +0000
commitd1e29400d3edcace9f86ff80eecd0f94954e7aa2 (patch)
tree3d5e30476ea97c4d2875fbf13ed8c842d62c6c42 /src
parent2dc7aaec82d109582ba5df71b9eebde5819dc33b (diff)
parent7ea7fc10db4b8ec8085a2f6307c5cdb17bb5927c (diff)
Merge pull request #331 from thebirk/fix-out-linux
Fixed macOS not compiling
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9351df3b2..51a6856d1 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1125,7 +1125,7 @@ int main(int arg_count, char **arg_ptr) {
// NOTE: macOS links DWARF symbols dynamically. Dsymutil will map the stubs in the exe
// to the symbols in the object file
exit_code = system_exec_command_line_app("dsymutil", true,
- "dsymutil %.*s%s", LIT(output_base), output_ext
+ "dsymutil %.*s%.*s", LIT(output_base), LIT(output_ext)
);
if (exit_code != 0) {