diff options
author | Emil Velikov <[email protected]> | 2014-06-23 15:54:36 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-06-23 15:54:36 +0100 |
commit | f9ebb1ea771c2acfe51cd2c3f884b22e9b057252 (patch) | |
tree | cdeaa7b6b997d980b6270c900148d6be0cc838ce /src/gallium/targets | |
parent | 11e46a32aedb4ba85c68798ac00087e2c7ecb1a9 (diff) |
targets/xvmc: correctly generate the symlinks
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/xvmc/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/targets/xvmc/Makefile.am b/src/gallium/targets/xvmc/Makefile.am index 227fde668a7..6e81e085cb6 100644 --- a/src/gallium/targets/xvmc/Makefile.am +++ b/src/gallium/targets/xvmc/Makefile.am @@ -88,13 +88,13 @@ install-data-hook: j=libXvMCgallium.$(LIB_EXT); \ k=libXvMC$${i}.$(LIB_EXT); \ l=$${k}.$(XVMC_MAJOR).$(XVMC_MINOR).0; \ - ln -f $$dest_dir/$$j.$(XVMC_MAJOR).$(XVMC_MINOR).0 \ - $$dest_dir/$${l}; \ + ln -f .libs/$${j}.$(XVMC_MAJOR).$(XVMC_MINOR).0 \ + $${dest_dir}/$${l}; \ ln -sf $${l} \ - $$dest_dir/$$k.$(XVMC_MAJOR).$(XVMC_MINOR); \ + $${dest_dir}/$${k}.$(XVMC_MAJOR).$(XVMC_MINOR); \ ln -sf $${l} \ - $$dest_dir/$$k.$(XVMC_MAJOR); \ + $${dest_dir}/$${k}.$(XVMC_MAJOR); \ ln -sf $${l} \ - $$dest_dir/$$k; \ + $${dest_dir}/$${k}; \ done; \ - $(RM) -f $$dest_dir/libXvMCgallium.* + $(RM) -f $${dest_dir}/libXvMCgallium.* |