summarylogtreecommitdiffstats
path: root/so.diff
diff options
context:
space:
mode:
Diffstat (limited to 'so.diff')
-rw-r--r--so.diff13
1 files changed, 0 insertions, 13 deletions
diff --git a/so.diff b/so.diff
deleted file mode 100644
index 0445c02248a3..000000000000
--- a/so.diff
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/config/BuildSystem/config/libraries.py b/config/BuildSystem/config/libraries.py
-index 0d93f57fc0..d94932899f 100644
---- a/config/BuildSystem/config/libraries.py
-+++ b/config/BuildSystem/config/libraries.py
-@@ -133,7 +133,7 @@ class Configure(config.base.Configure):
- # remove duplicate -L, -Wl,-rpath options - and only consecutive -l options
- if j in newldflags and any([j.startswith(flg) for flg in dupflags]): continue
- if newlibs and j == newlibs[-1]: continue
-- if j.startswith('-l') or j.endswith('.lib') or j.endswith('.a') or j.endswith('.o') or j == '-Wl,-Bstatic' or j == '-Wl,-Bdynamic' or j == '-Wl,--start-group' or j == '-Wl,--end-group':
-+ if j.startswith('-l') or j.endswith('.lib') or j.endswith('.a') or j.endswith('.so') or j.endswith('.o') or j == '-Wl,-Bstatic' or j == '-Wl,-Bdynamic' or j == '-Wl,--start-group' or j == '-Wl,--end-group':
- newlibs.append(j)
- else:
- newldflags.append(j)