diff options
author | Nathan Binkert <nate@binkert.org> | 2011-06-02 17:36:07 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2011-06-02 17:36:07 -0700 |
commit | 0c424344facaa2b388cba814f08ef5622f8e122b (patch) | |
tree | 5386a973bf1f9a4dcd77a6ae6a89e6b2fb716fdc /src/SConscript | |
parent | f656787edb2f7f6d95f267fdd91bbcd67f7305ac (diff) | |
download | gem5-0c424344facaa2b388cba814f08ef5622f8e122b.tar.xz |
copyright: Add code for finding all copyright blocks and create a COPYING file
The end of the COPYING file was generated with:
% python ./util/find_copyrights.py configs src system tests util
Update -C command line option to spit out COPYING file
Diffstat (limited to 'src/SConscript')
-rwxr-xr-x | src/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript index fcae475cf..432450b03 100755 --- a/src/SConscript +++ b/src/SConscript @@ -516,7 +516,7 @@ def makeInfoPyFile(target, source, env): # Generate a file that wraps the basic top level files env.Command('python/m5/info.py', - [ '#/AUTHORS', '#/LICENSE', '#/README', ], + [ '#/COPYING', '#/LICENSE', '#/README', ], MakeAction(makeInfoPyFile, Transform("INFO"))) PySource('m5', 'python/m5/info.py') |