From 78d8e6c98a7f679b9468c5255043819a6588846e Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Tue, 9 Mar 2010 17:08:16 +0000 Subject: scons: Always build the identity driver. --- SConstruct | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 4cadd01363..5e171ea2e1 100644 --- a/SConstruct +++ b/SConstruct @@ -112,9 +112,11 @@ Export([ ####################################################################### # Environment setup -# Always build trace driver +# Always build trace and identity drivers if 'trace' not in env['drivers']: env['drivers'].append('trace') +if 'identity' not in env['drivers']: + env['drivers'].append('identity') # Includes env.Append(CPPPATH = [ -- cgit v1.2.3