summaryrefslogtreecommitdiffstats
path: root/install-lib-links.mk
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2014-08-14 16:07:26 -0700
committerMatt Turner <mattst88@gmail.com>2014-08-18 18:22:40 -0700
commit4ccd2a9f9b0813887716d38321829175459665e0 (patch)
treea1d025723d9a64c0d9e60bc7526608ad29673610 /install-lib-links.mk
parent45eb06566830eb49551c27262cdd936bf42ec922 (diff)
downloadexternal_mesa3d-4ccd2a9f9b0813887716d38321829175459665e0.zip
external_mesa3d-4ccd2a9f9b0813887716d38321829175459665e0.tar.gz
external_mesa3d-4ccd2a9f9b0813887716d38321829175459665e0.tar.bz2
build: Let install-lib-links.mk handle .la files in subdirectories.
The next patches are going to combine some of the mapi subdirectories' Makefiles into a single Makefile, giving better build parallelism. lib_LTLIBRARIES will be set to something like lib_LTLIBRARIES = shared-glapi/libglapi.la es2api/libGLESv2.la and the current code in install-lib-links.mk simply prepends .libs/ and replaces the .la in order to create the filenames that it needs to ln/cp into the LIBDIR. This doesn't work when the .la file is actually in a subdirectory. This patch fixes this and puts .libs/ in the right place. Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'install-lib-links.mk')
-rw-r--r--install-lib-links.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/install-lib-links.mk b/install-lib-links.mk
index 09fb86a..5ea73853 100644
--- a/install-lib-links.mk
+++ b/install-lib-links.mk
@@ -7,7 +7,7 @@ all-local : .libs/install-mesa-links
.libs/install-mesa-links : $(lib_LTLIBRARIES)
$(AM_V_GEN)$(MKDIR_P) $(top_builddir)/$(LIB_DIR); \
- for f in $(lib_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*); do \
+ for f in $(join $(addsuffix .libs/,$(dir $(lib_LTLIBRARIES))),$(notdir $(lib_LTLIBRARIES:%.la=%.$(LIB_EXT)*))); do \
if test -h .libs/$$f; then \
cp -d $$f $(top_builddir)/$(LIB_DIR); \
else \