kodiPlugins: fix path for shared object links

Signed-off-by: Jonathan Rudenberg <jonathan@titanous.com>
This commit is contained in:
Jonathan Rudenberg 2017-06-16 10:49:31 -04:00 committed by Edward Tjörnhammar
parent 779aea8868
commit 84bfe7ed78
No known key found for this signature in database
GPG key ID: 7B82CE4A866B6845

View file

@ -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}
'';
};