aboutsummaryrefslogtreecommitdiffstats
path: root/core/deps.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2023-08-31 15:17:56 +0200
committerLoïc Hoguin <[email protected]>2023-08-31 15:17:56 +0200
commitcb3b5f6c74dfbc92fc5aedeeb1f42a7e8a5fcfcd (patch)
tree6cada6fa46b19789cfc049471d94b25e39ffb2ff /core/deps.mk
parente8e6115a4f8086fa6a23f90713ceeb518d851f70 (diff)
downloaderlang.mk-cb3b5f6c74dfbc92fc5aedeeb1f42a7e8a5fcfcd.tar.gz
erlang.mk-cb3b5f6c74dfbc92fc5aedeeb1f42a7e8a5fcfcd.tar.bz2
erlang.mk-cb3b5f6c74dfbc92fc5aedeeb1f42a7e8a5fcfcd.zip
Tweak c_src autopatch output on macOS
Diffstat (limited to 'core/deps.mk')
-rw-r--r--core/deps.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/deps.mk b/core/deps.mk
index fac7301..8b313a3 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -604,8 +604,8 @@ define dep_autopatch_rebar.erl
"\t$$\(CC) -o $$\@ $$\? $$\(LDFLAGS) $$\(ERL_LDFLAGS) $$\(DRV_LDFLAGS) $$\(LDLIBS) $$\(EXE_LDFLAGS)",
case {filename:extension(Output), $(PLATFORM)} of
{[], _} -> "\n";
- {".so", darwin} -> "-shared\n";
- {".dylib", darwin} -> "-shared\n";
+ {".so", darwin} -> " -shared\n";
+ {".dylib", darwin} -> " -shared\n";
{_, darwin} -> "\n";
_ -> " -shared\n"
end])