diff options
author | Emil Velikov <[email protected]> | 2014-06-23 18:30:00 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-06-23 20:57:01 +0100 |
commit | 2442d3553fc06595c8c324bd50628da54e269364 (patch) | |
tree | 884e400c12cf49ee1bdd68d173f4fc8bc4f1ee5c /src/gallium/targets/xvmc | |
parent | 5f11b10f2c6a7dc94b8abdbffb755505f8a3a0ec (diff) |
targets/(vdpau|xvmc): hardlink against the installed library
With commit 11e46a32aed and f9ebb1ea771 we resolved the symlink
generation required by the versioning of the library.
Although they incorrectly changed the way hardlinks are created by
linking to the ones from the build tree. If the device used for
building differs from the one set as destination linking will fail.
Reported-by: Andy Furniss <[email protected]>
Tested-by: Andy Furniss <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/targets/xvmc')
-rw-r--r-- | src/gallium/targets/xvmc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/xvmc/Makefile.am b/src/gallium/targets/xvmc/Makefile.am index 6e81e085cb6..bf986f47f48 100644 --- a/src/gallium/targets/xvmc/Makefile.am +++ b/src/gallium/targets/xvmc/Makefile.am @@ -88,7 +88,7 @@ install-data-hook: j=libXvMCgallium.$(LIB_EXT); \ k=libXvMC$${i}.$(LIB_EXT); \ l=$${k}.$(XVMC_MAJOR).$(XVMC_MINOR).0; \ - ln -f .libs/$${j}.$(XVMC_MAJOR).$(XVMC_MINOR).0 \ + ln -f $${dest_dir}/$${j}.$(XVMC_MAJOR).$(XVMC_MINOR).0 \ $${dest_dir}/$${l}; \ ln -sf $${l} \ $${dest_dir}/$${k}.$(XVMC_MAJOR).$(XVMC_MINOR); \ |