diff options
author | Vinson Lee <[email protected]> | 2011-03-08 17:59:57 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2011-03-08 17:59:57 -0800 |
commit | c0d3fb4b6c11fd128921c464f753480a137555a0 (patch) | |
tree | 1bc05c1790e71b33a63611a3c0afc58e1333001b /src/gallium/tests/unit | |
parent | 67f61199c24276e6032774d56d2843c62fe28a2f (diff) |
scons: Fix immediate Python exceptions with SCons on SunOS.
The build still fails.
Diffstat (limited to 'src/gallium/tests/unit')
-rw-r--r-- | src/gallium/tests/unit/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/tests/unit/SConscript b/src/gallium/tests/unit/SConscript index 655e8a9b41c..49f28c03691 100644 --- a/src/gallium/tests/unit/SConscript +++ b/src/gallium/tests/unit/SConscript @@ -4,7 +4,7 @@ env = env.Clone() env.Prepend(LIBS = [gallium]) -if env['platform'] in ('freebsd8', 'sunos5'): +if env['platform'] in ('freebsd8', 'sunos'): env.Append(LIBS = ['m']) if env['platform'] == 'freebsd8': |