Skip to content

Commit 4e18119

Browse files
author
Dane Springmeyer
committed
ony use the static linking helper flag on darwin
1 parent 2793ca0 commit 4e18119

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wscript

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def configure(conf):
5353
if os.environ.has_key('LINKFLAGS'):
5454
linkflags.extend(os.environ['LINKFLAGS'].split(' '))
5555

56-
if Options.options.internal_sqlite:
57-
linkflags.append('-Wl,-search_paths_first')
56+
if Options.options.internal_sqlite and Options.platform == 'darwin':
57+
linkflags.append('-Wl,-search_paths_first')
5858

5959
conf.env.append_value("LINKFLAGS", linkflags)
6060

0 commit comments

Comments
 (0)