forked from hasufell/hasufell-repository
18 lines
336 B
Diff
18 lines
336 B
Diff
|
Source: Gentoo
|
||
|
Upstream: unknown
|
||
|
Reason: fix underlinking
|
||
|
|
||
|
--- SConstruct
|
||
|
+++ SConstruct
|
||
|
@@ -206,9 +206,8 @@
|
||
|
if env['crossmingw']:
|
||
|
env.Append(CCFLAGS=['-Wl,-subsystem,windows'])
|
||
|
env.Append(LIBS=['m'])
|
||
|
- elif env['static']:
|
||
|
- env.Append(LIBS=['m', 'dl'])
|
||
|
|
||
|
+ env.Append(LIBS=['m', 'dl'])
|
||
|
|
||
|
env = conf.Finish()
|
||
|
|