From 507507eeec241da94d9af36e43926932f2f7cd63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Rom=C3=A1n=20N=C3=BA=C3=B1ez?= Date: Sun, 15 Sep 2024 01:49:32 +0200 Subject: [PATCH] Only disable new dtags on linux --- SCsub | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SCsub b/SCsub index 61e6084..575ac4a 100644 --- a/SCsub +++ b/SCsub @@ -11,8 +11,7 @@ Import("env") if env["platform"] == "linuxbsd": if not "RPATH" in env: env.Append(RPATH=env.Literal("\\$$ORIGIN")) - -env.Append(LINKFLAGS=["-Wl,--disable-new-dtags"]) + env.Append(LINKFLAGS=["-Wl,--disable-new-dtags"]) env_ffmpeg = env.Clone()