summaryrefslogtreecommitdiffstats
path: root/install-lib-links.mk
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-02-24 14:05:15 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2015-02-24 15:33:25 +0000
commitfece147be53880ac8e8e5e2863f91cdd01d98b5c (patch)
tree6f89220876d8e1a8cd03fe0673faad002fdb4940 /install-lib-links.mk
parentf8f3aa78d8846174d3b5a877b3c06ee7bdbb29c7 (diff)
downloadexternal_mesa3d-fece147be53880ac8e8e5e2863f91cdd01d98b5c.zip
external_mesa3d-fece147be53880ac8e8e5e2863f91cdd01d98b5c.tar.gz
external_mesa3d-fece147be53880ac8e8e5e2863f91cdd01d98b5c.tar.bz2
install-lib-links: remove the .install-lib-links file
With earlier commit (install-lib-links: don't depend on .libs directory) we moved the location of the file from .libs/ to the current dir. Although we did not attribute that in the former case autotools was doing us a favour and removing the file. Explicitly remove the file at clean-local time, otherwise we'll end up with dangling files. Cc: "10.3 10.4 10.5" <mesa-stable@lists.freedesktop.org> Cc: Matt Turner <mattst88@gmail.com> Cc: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'install-lib-links.mk')
-rw-r--r--install-lib-links.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/install-lib-links.mk b/install-lib-links.mk
index 3545b26..5fe9141 100644
--- a/install-lib-links.mk
+++ b/install-lib-links.mk
@@ -19,6 +19,7 @@ clean-local:
for f in $(notdir $(lib_LTLIBRARIES:%.la=.libs/%.$(LIB_EXT)*)); do \
$(RM) $(top_builddir)/$(LIB_DIR)/$$f; \
done;
+ $(RM) .install-mesa-links
endif
endif