Skip to content

Commit

Permalink
Update static library path on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
patr0nus committed Oct 24, 2021
1 parent 57bc82e commit fa7f14a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/postproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def filterLibFile(filename):
print('Striping', libFile.name)
subprocess.check_call(['strip', '-x', os.path.join(libFolder, libFile.name)])
elif sys.platform == 'linux':
for dirname, _, basenames in os.walk(nodeSrcFolder + '/out/Release/obj'):
for dirname, _, basenames in os.walk(nodeSrcFolder + '/out/Release/obj.target'):
for basename in basenames:
if basename.endswith('.a') and filterLibFile(basename):
subprocess.run(
Expand Down

0 comments on commit fa7f14a

Please sign in to comment.