summaryrefslogtreecommitdiffstats
path: root/install-lib-links.mk
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2015-02-19 14:52:49 +0100
committerMatt Turner <mattst88@gmail.com>2015-02-19 10:02:02 -0800
commit5c1aac17adffeef9bb6171d83cc7ddd94c61c5f2 (patch)
tree3b13fe6cd52995a7e04ea6791e0862ada4464bdd /install-lib-links.mk
parent6c34fd20beb74e009778870a8e30811b393f745c (diff)
downloadexternal_mesa3d-5c1aac17adffeef9bb6171d83cc7ddd94c61c5f2.zip
external_mesa3d-5c1aac17adffeef9bb6171d83cc7ddd94c61c5f2.tar.gz
external_mesa3d-5c1aac17adffeef9bb6171d83cc7ddd94c61c5f2.tar.bz2
install-lib-links: don't depend on .libs directory
This snippet can be included in Makefiles that may, depending on the project configuration, not actually build any installable libraries. In that case we don't have anything to depend on and this part of the makefile may be executed before the .libs directory is created, so do not depend on it being there. Cc: "10.3 10.4 10.5" <mesa-stable@lists.freedesktop.org> Reviewed-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Diffstat (limited to 'install-lib-links.mk')
-rw-r--r--install-lib-links.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/install-lib-links.mk b/install-lib-links.mk
index 6976ca4..3545b26 100644
--- a/install-lib-links.mk
+++ b/install-lib-links.mk
@@ -3,9 +3,9 @@
if BUILD_SHARED
if HAVE_COMPAT_SYMLINKS
-all-local : .libs/install-mesa-links
+all-local : .install-mesa-links
-.libs/install-mesa-links : $(lib_LTLIBRARIES)
+.install-mesa-links : $(lib_LTLIBRARIES)
$(AM_V_GEN)$(MKDIR_P) $(top_builddir)/$(LIB_DIR); \
for f in $(join $(addsuffix .libs/,$(dir $(lib_LTLIBRARIES))),$(notdir $(lib_LTLIBRARIES:%.la=%.$(LIB_EXT)*))); do \
if test -h .libs/$$f; then \