Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Archive
Alchemy Viewer
Commits
bbbaca2a
Commit
bbbaca2a
authored
17 years ago
by
Christian Goetze
Browse files
Options
Downloads
Patches
Plain Diff
Add dir_list attribute, populate it and use it to set access permissions
parent
e62bb201
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/lib/python/indra/util/llmanifest.py
+2
-0
2 additions, 0 deletions
indra/lib/python/indra/util/llmanifest.py
indra/newview/viewer_manifest.py
+9
-0
9 additions, 0 deletions
indra/newview/viewer_manifest.py
with
11 additions
and
0 deletions
indra/lib/python/indra/util/llmanifest.py
+
2
−
0
View file @
bbbaca2a
...
@@ -238,6 +238,7 @@ class LLManifest(object):
...
@@ -238,6 +238,7 @@ class LLManifest(object):
def
__init__
(
self
,
srctree
,
dsttree
,
args
):
def
__init__
(
self
,
srctree
,
dsttree
,
args
):
super
(
LLManifest
,
self
).
__init__
()
super
(
LLManifest
,
self
).
__init__
()
self
.
args
=
args
self
.
args
=
args
self
.
dir_list
=
[]
self
.
file_list
=
[]
self
.
file_list
=
[]
self
.
excludes
=
[]
self
.
excludes
=
[]
self
.
actions
=
[]
self
.
actions
=
[]
...
@@ -424,6 +425,7 @@ class LLManifest(object):
...
@@ -424,6 +425,7 @@ class LLManifest(object):
if
(
not
self
.
includes
(
src
,
dst
)):
if
(
not
self
.
includes
(
src
,
dst
)):
print
"
Excluding:
"
,
src
,
dst
print
"
Excluding:
"
,
src
,
dst
return
return
self
.
dir_list
.
append
([
src
,
dst
])
names
=
os
.
listdir
(
src
)
names
=
os
.
listdir
(
src
)
self
.
cmakedirs
(
dst
)
self
.
cmakedirs
(
dst
)
errors
=
[]
errors
=
[]
...
...
This diff is collapsed.
Click to expand it.
indra/newview/viewer_manifest.py
+
9
−
0
View file @
bbbaca2a
...
@@ -479,6 +479,15 @@ class LinuxManifest(ViewerManifest):
...
@@ -479,6 +479,15 @@ class LinuxManifest(ViewerManifest):
if
re
.
search
(
"
lib/lib.+\.so.*
"
,
d
):
if
re
.
search
(
"
lib/lib.+\.so.*
"
,
d
):
self
.
run_command
(
'
strip -S %s
'
%
d
)
self
.
run_command
(
'
strip -S %s
'
%
d
)
# Fixing access permissions
for
s
,
d
in
self
.
dir_list
:
self
.
run_command
(
"
chmod 755
'
%s
'"
%
d
)
for
s
,
d
in
self
.
file_list
:
if
os
.
access
(
d
,
os
.
X_OK
):
self
.
run_command
(
"
chmod 755
'
%s
'"
%
d
)
else
:
self
.
run_command
(
"
chmod 644
'
%s
'"
%
d
)
def
package_finish
(
self
):
def
package_finish
(
self
):
if
(
self
.
args
.
has_key
(
'
installer_name
'
)):
if
(
self
.
args
.
has_key
(
'
installer_name
'
)):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment