Browse Source

scons: Always build the identity driver.

tags/mesa-7.9-rc1
José Fonseca 15 years ago
parent
commit
78d8e6c98a
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      SConstruct

+ 3
- 1
SConstruct View File

@@ -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 = [

Loading…
Cancel
Save