From: José Fonseca Date: Thu, 17 Jul 2008 02:25:20 +0000 (+0900) Subject: scons: Set default LIBS env var. X-Git-Tag: 062012170305~17580^2~390^2~878 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c76787a1dcfa10b00fae5ac7f3d71dda758123cf;p=profile%2Fivi%2Fmesa.git scons: Set default LIBS env var. --- diff --git a/scons/gallium.py b/scons/gallium.py index b3e48ab..43603e5 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)