summaryrefslogtreecommitdiff
path: root/scons
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-07-17 11:25:20 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-07-18 01:20:44 +0900
commitc76787a1dcfa10b00fae5ac7f3d71dda758123cf (patch)
tree8b04f16e650c36b4db4c45aa2fe97cb74ed0bf24 /scons
parent381e3489c21c177d87bac9d7cdbfe7e2611772e5 (diff)
scons: Set default LIBS env var.
Diffstat (limited to 'scons')
-rw-r--r--scons/gallium.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index b3e48ab3b7b..43603e51044 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)