78,79c78
< print >>f, "m5_build_env = ",
< print >>f, source[0]
---
> print >>f, "m5_build_env = ", source[0]
84a84,94
> def MakeInfoPyFile(target, source, env):
> f = file(str(target[0]), 'w')
> for src in source:
> data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
> print >>f, "%s = %s" % (src, repr(data))
> f.close()
>
> env.Command('m5/info.py',
> [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ],
> MakeInfoPyFile)
>
87a98
> pyzip_files.append('m5/info.py')