Commit 311d556e authored by Ghislain MARY's avatar Ghislain MARY
Browse files

Fix mac_rpath.py.

Showing with 1 addition and 1 deletion
......@@ -16,7 +16,7 @@ def list_files(source_dir):
for file in os.listdir(source_dir):
if os.path.isdir(os.path.join(source_dir, file)) == False:
root, ext = os.path.splitext(file)
if ext == '.dylib':
if ext == '.dylib' or ext == '.so':
filelist.append(file)
return filelist
......
Supports Markdown
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