Skip to content

Commit

Permalink
linux: libfmod soft link use relative path (#19040)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatriceJiang authored and drelaptop committed Sep 14, 2018
1 parent 1e780cb commit e1d34fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions download-deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ def fix_fmod_link(self, extract_dir):
if os.path.exists(fmod_path):
os.unlink(os.path.join(fmod_path, "libfmod.so.6"))
os.unlink(os.path.join(fmod_path, "libfmodL.so.6"))
os.symlink(os.path.join(fmod_path, "libfmod.so"), os.path.join(fmod_path, "libfmod.so.6"))
os.symlink(os.path.join(fmod_path, "libfmodL.so"), os.path.join(fmod_path, "libfmodL.so.6"))
os.symlink("libfmod.so", os.path.join(fmod_path, "libfmod.so.6"))
os.symlink("libfmodL.so", os.path.join(fmod_path, "libfmodL.so.6"))
else:
print("==> fmod directory not found `%s`, failed to fix fmod link!"%fmod_path)

Expand Down

0 comments on commit e1d34fa

Please sign in to comment.