mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
scons: Fix inverted logic.
This commit is contained in:
parent
b8c53caac8
commit
64b5a81e19
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ talloc = env.SharedLibrary(
|
|||
|
||||
env.InstallSharedLibrary(talloc)
|
||||
|
||||
if env['platform'] != 'windows':
|
||||
if env['platform'] == 'windows':
|
||||
talloc = env.FindIxes(talloc, 'LIBPREFIX', 'LIBSUFFIX')
|
||||
else:
|
||||
talloc = env.FindIxes(talloc, 'SHLIBPREFIX', 'SHLIBSUFFIX')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue