Skip to content

Commit fa7f14a

Browse files
author
patr0nus
committed
Update static library path on linux
1 parent 57bc82e commit fa7f14a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/postproc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def filterLibFile(filename):
3636
print('Striping', libFile.name)
3737
subprocess.check_call(['strip', '-x', os.path.join(libFolder, libFile.name)])
3838
elif sys.platform == 'linux':
39-
for dirname, _, basenames in os.walk(nodeSrcFolder + '/out/Release/obj'):
39+
for dirname, _, basenames in os.walk(nodeSrcFolder + '/out/Release/obj.target'):
4040
for basename in basenames:
4141
if basename.endswith('.a') and filterLibFile(basename):
4242
subprocess.run(

0 commit comments

Comments
 (0)