diff options
author | davilla <davilla@4pi.com> | 2012-09-06 15:21:23 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2012-09-06 15:22:17 -0400 |
commit | dd6a9fbeeb8d585d957a1739535fb1bccbb530db (patch) | |
tree | 52a178d8368c8a678d8bcdce693559b7a30cc27e /tools | |
parent | d5b904331f157db9ddbb6b29f5b3e79b82509d7f (diff) |
[darwin] fixed packaging, the internal name used when linking name needs to change or we will try and find it again when packaging
Diffstat (limited to 'tools')
-rw-r--r-- | tools/darwin/depends/xbmc-pvr-addons/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/darwin/depends/xbmc-pvr-addons/Makefile b/tools/darwin/depends/xbmc-pvr-addons/Makefile index 7f439b92d1..3e97003281 100644 --- a/tools/darwin/depends/xbmc-pvr-addons/Makefile +++ b/tools/darwin/depends/xbmc-pvr-addons/Makefile @@ -36,6 +36,7 @@ $(LIBDYLIB): $(SOURCE) mkdir -p $(XBMC_ADDONSDIR)/$$ADDON ; \ cp -PRf $(SOURCE)/addons/$$ADDON/addon/* $(XBMC_ADDONSDIR)/$$ADDON ; \ cp -Pf $(SOURCE)/addons/$$ADDON/*.pvr $(XBMC_ADDONSDIR)/$$ADDON ; \ + install_name_tool -id "$$ADDON" `find "$(XBMC_ADDONSDIR)/$$ADDON" -type f -name "*.pvr"` ; \ done touch .installed |