summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets
diff options
context:
space:
mode:
authorAlexandre Demers <alexandre.f.demers@gmail.com>2012-04-04 10:54:56 +0200
committerChristian König <deathsimple@vodafone.de>2012-04-04 10:57:50 +0200
commit3ea3695b0495a56d9946a292e0e7cad4e0fb2fe0 (patch)
tree9f57bbacca3ce6fd1ae383a93ccdfd60e2972dbb /src/gallium/targets
parent75f8990547903f7dde5d98319cc813f94a15aa78 (diff)
downloadexternal_mesa3d-3ea3695b0495a56d9946a292e0e7cad4e0fb2fe0.zip
external_mesa3d-3ea3695b0495a56d9946a292e0e7cad4e0fb2fe0.tar.gz
external_mesa3d-3ea3695b0495a56d9946a292e0e7cad4e0fb2fe0.tar.bz2
st/xvmc: fix library installation dir
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=47878 v2: some reordering and while at it also fix the comment in Makefile.xvmc Signed-off-by: Christian König <deathsimple@vodafone.de>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r--src/gallium/targets/Makefile.xvmc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/targets/Makefile.xvmc b/src/gallium/targets/Makefile.xvmc
index ad9dd2d..ff1af4f 100644
--- a/src/gallium/targets/Makefile.xvmc
+++ b/src/gallium/targets/Makefile.xvmc
@@ -1,7 +1,7 @@
-# This makefile template is used to build libXvMCg3dvl.so
+# This makefile template is used to build libXvMC*.so
LIBNAME = lib$(LIBBASENAME).so
-LIB_GLOB=lib$(LIBBASENAME).*so*
+XVMC_LIB_GLOB=lib$(LIBBASENAME).*so*
XVMC_MAJOR = 1
XVMC_MINOR = 0
INCLUDES = -I$(TOP)/src/gallium/include \
@@ -67,7 +67,7 @@ clean:
-rm -f depend depend.bak
install: default
- $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
- $(MINSTALL) -m 755 $(TOP)/$(LIB_DIR)/gallium/$(LIB_GLOB) $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
+ $(INSTALL) -d $(DESTDIR)$(XVMC_LIB_INSTALL_DIR)
+ $(MINSTALL) -m 755 $(TOP)/$(LIB_DIR)/gallium/$(XVMC_LIB_GLOB) $(DESTDIR)$(XVMC_LIB_INSTALL_DIR)
include depend