diff options
author | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-07-17 11:25:20 +0900 |
---|---|---|
committer | José Fonseca <jrfonseca@tungstengraphics.com> | 2008-07-18 01:20:44 +0900 |
commit | c76787a1dcfa10b00fae5ac7f3d71dda758123cf (patch) | |
tree | 8b04f16e650c36b4db4c45aa2fe97cb74ed0bf24 /scons | |
parent | 381e3489c21c177d87bac9d7cdbfe7e2611772e5 (diff) |
scons: Set default LIBS env var.
Diffstat (limited to 'scons')
-rw-r--r-- | scons/gallium.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index b3e48ab3b..43603e510 100644 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -414,6 +414,9 @@ def generate(env): ] env.Append(LINKFLAGS = linkflags) + # Default libs + env.Append(LIBS = []) + # Custom builders and methods createConvenienceLibBuilder(env) createCodeGenerateMethod(env) |