diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-03-03 23:55:21 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-03-03 23:55:21 -0800 |
commit | 96e0f3bda58554f6125e824833b7399f1dcf77a1 (patch) | |
tree | a58297d110a1177801621cc492d6ae59bea24847 | |
parent | fa448129b1cb7a03ef00361d316ac2d7c38e8091 (diff) | |
download | gem5-96e0f3bda58554f6125e824833b7399f1dcf77a1.tar.xz |
SCons: Clean up some inconsistent capitalization in scons options.
-rwxr-xr-x | SConstruct | 2 | ||||
-rw-r--r-- | src/mem/protocol/SConsopts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index 6ed3b5422..89036c31f 100755 --- a/SConstruct +++ b/SConstruct @@ -361,7 +361,7 @@ global_vars.AddVariables( ('BATCH', 'Use batch pool for build and tests', False), ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), ('M5_BUILD_CACHE', 'Cache built objects in this directory', False), - ('EXTRAS', 'Add Extra directories to the compilation', '', + ('EXTRAS', 'Add extra directories to the compilation', '', PathListAllExist, PathListMakeAbsolute), ) diff --git a/src/mem/protocol/SConsopts b/src/mem/protocol/SConsopts index 6e4cab248..0e794d5f0 100644 --- a/src/mem/protocol/SConsopts +++ b/src/mem/protocol/SConsopts @@ -50,7 +50,7 @@ all_protocols = [ 'MOESI_hammer', ] -opt = EnumVariable('PROTOCOL', 'Coherence Protocol for Ruby', 'MI_example', +opt = EnumVariable('PROTOCOL', 'Coherence protocol for Ruby', 'MI_example', all_protocols) sticky_vars.AddVariables(opt) |