Commit 157d9706 by Baruch Sterin

pyabc packaging script: also package shared objects

parent a0df379b
...@@ -43,7 +43,7 @@ def add_python_lib(tf, lib_dir, lib, mtime): ...@@ -43,7 +43,7 @@ def add_python_lib(tf, lib_dir, lib, mtime):
for f in files: for f in files:
_, ext = os.path.splitext(f) _, ext = os.path.splitext(f)
if ext in ['.py']: if ext in ['.py', '.so']:
add_file( tf, os.path.join(root,f), os.path.join(arcroot, f), 0666, mtime) add_file( tf, os.path.join(root,f), os.path.join(arcroot, f), 0666, mtime)
def add_dir(tf, dir, mtime): def add_dir(tf, dir, mtime):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment