Only bother with the device SConscript if you're in FULL_SYSTEM
authorGabe Black <gblack@eecs.umich.edu>
Tue, 7 Nov 2006 00:55:42 +0000 (19:55 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Tue, 7 Nov 2006 00:55:42 +0000 (19:55 -0500)
--HG--
extra : convert_revision : ac52f548afb98dd0437e7d7c2600ff9b8ebfd1fa

src/SConscript

index b383f58d69502076211ed993aa5785e42af0e6c7..58081751dd4d77bbe20f934b96e763ec60da2ded 100644 (file)
@@ -294,8 +294,9 @@ arch_sources = SConscript(os.path.join('arch', 'SConscript'), exports = 'env')
 
 cpu_sources = SConscript(os.path.join('cpu', 'SConscript'), exports = 'env')
 
-dev_sources = SConscript(os.path.join('dev', 'SConscript'), exports = 'env')
-full_system_sources += dev_sources
+if env['FULL_SYSTEM']:
+    dev_sources = SConscript(os.path.join('dev', 'SConscript'), exports = 'env')
+    full_system_sources += dev_sources
 
 # This is outside of cpu/SConscript since the source directory isn't
 # underneath 'cpu'.