depfixer: Do not try to fix rpaths of dlls

pull/4349/head
Marvin Scholz 6 years ago committed by Jussi Pakkanen
parent 83c62a3341
commit fc3e2f5ad0
  1. 3
      mesonbuild/scripts/depfixer.py

@ -432,6 +432,9 @@ def fix_rpath(fname, new_rpath, final_path, install_name_mappings, verbose=True)
# Static libraries never have rpaths # Static libraries never have rpaths
if fname.endswith('.a'): if fname.endswith('.a'):
return return
# DLLs never have rpaths
if fname.endswith('.dll'):
return
try: try:
if fname.endswith('.jar'): if fname.endswith('.jar'):
fix_jar(fname) fix_jar(fname)

Loading…
Cancel
Save