diff options
author | Christian Goetze <cg@lindenlab.com> | 2008-03-27 21:07:50 +0000 |
---|---|---|
committer | Christian Goetze <cg@lindenlab.com> | 2008-03-27 21:07:50 +0000 |
commit | bbbaca2af1b16747b04bd2013ad1407c4be34ff8 (patch) | |
tree | 4228abc4d0cd3348131f7a0a14fdf815748e9443 /indra/lib | |
parent | e62bb2018833bd3e52b1f27095134e08c2dc05fe (diff) |
Add dir_list attribute, populate it and use it to set access permissions
Diffstat (limited to 'indra/lib')
-rw-r--r-- | indra/lib/python/indra/util/llmanifest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py index 9679650104..858034bad6 100644 --- a/indra/lib/python/indra/util/llmanifest.py +++ b/indra/lib/python/indra/util/llmanifest.py @@ -238,6 +238,7 @@ class LLManifest(object): def __init__(self, srctree, dsttree, args): super(LLManifest, self).__init__() self.args = args + self.dir_list = [] self.file_list = [] self.excludes = [] self.actions = [] @@ -424,6 +425,7 @@ class LLManifest(object): if(not self.includes(src, dst)): print "Excluding: ", src, dst return + self.dir_list.append([src, dst]) names = os.listdir(src) self.cmakedirs(dst) errors = [] |