diff options
author | Emil Velikov <[email protected]> | 2015-02-24 14:05:15 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-02-24 15:34:25 +0000 |
commit | 5e026a2f637cc57bffa28e3fa0cef3eea5e9adc9 (patch) | |
tree | 55fc8d94c48ccbe67da12b45362af29c2983f5c9 /install-lib-links.mk | |
parent | 04dc301669693e8b34a98d759f3c7378a6c43cc7 (diff) |
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" <[email protected]>
Cc: Matt Turner <[email protected]>
Cc: Lucas Stach <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
(cherry picked from commit fece147be53880ac8e8e5e2863f91cdd01d98b5c)
Diffstat (limited to 'install-lib-links.mk')
-rw-r--r-- | install-lib-links.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install-lib-links.mk b/install-lib-links.mk index 3545b268ebd..5fe9141d3bf 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 |