Skip to content

Commit

Permalink
kodiPlugins: fix path for shared object links
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Rudenberg <jonathan@titanous.com>
  • Loading branch information
titanous authored and edwtjo committed Sep 19, 2017
1 parent 83706dd commit 1eb9ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/video/kodi/commons.nix
Expand Up @@ -77,7 +77,7 @@ rec {
# them. Symlinking .so, as setting LD_LIBRARY_PATH is of no use
installPhase = let n = namespace; in ''
make install
ln -s $out/lib/addons/${n}/${n}.so.${version} $out/${pluginDir}/${n}.so
ln -s $out/lib/addons/${n}/${n}.so.${version} $out/${pluginDir}/${n}/${n}.so.${version}
'';

};
Expand Down

0 comments on commit 1eb9ffc

Please sign in to comment.