diff options
author | Alexander von Gluck IV <kallisti5@unixzen.com> | 2013-10-19 23:31:50 -0500 |
---|---|---|
committer | Alexander von Gluck IV <kallisti5@unixzen.com> | 2013-10-20 19:20:59 -0500 |
commit | 50370e483ba500fa3c65e8b67b915782a6f7fad0 (patch) | |
tree | dbafea6421abc04c96b121570f0e0f191c680c30 /scons | |
parent | 24fd074ce7f1d350523f0fa42f6d188a100ddb0f (diff) |
scons: Fix Haiku missing library
* The softpipe add-on needs libtranslation
due to the use of BTranslatorRoster
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'scons')
-rwxr-xr-x | scons/gallium.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index 5b20f3ff68..be3c3e7d9c 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -507,7 +507,7 @@ def generate(env): if env['platform'] in ('linux',): libs += ['rt'] if env['platform'] in ('haiku'): - libs += ['root', 'be', 'network'] + libs += ['root', 'be', 'network', 'translation'] env.Append(LIBS = libs) # OpenMP |