improve detection of linux, fixes #3201

This commit is contained in:
Juan Linietsky 2015-12-08 20:35:40 -03:00
parent 428984ec0c
commit 78b5404434

View File

@ -148,7 +148,7 @@ def configure(env):
env.Append(CPPFLAGS=['-DOPENGL_ENABLED','-DGLEW_ENABLED'])
if platform.platform() == 'Linux':
if platform.platform().find('Linux')>=0:
env.Append(CPPFLAGS=["-DALSA_ENABLED"])
env.Append(LIBS=['asound'])