mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
Fix uninstalling default.so
We need a clean uninstall for 'make distcheck' to pass; libtool hijinks leave a left-over plugins/default.so - remove it manually.
This commit is contained in:
parent
fc3e82421a
commit
c8b4939c7e
@ -16,3 +16,9 @@ pkglib_LTLIBRARIES = default.la
|
|||||||
install-exec-hook:
|
install-exec-hook:
|
||||||
-rm $(DESTDIR)$(pkglibdir)/*.a
|
-rm $(DESTDIR)$(pkglibdir)/*.a
|
||||||
-rm $(DESTDIR)$(pkglibdir)/*.la
|
-rm $(DESTDIR)$(pkglibdir)/*.la
|
||||||
|
|
||||||
|
# Since we removed the .la file, 'make uninstall' doesn't work properly,
|
||||||
|
# since it counts on libtool to remove the .la files, so just kill the
|
||||||
|
# .so file manually.
|
||||||
|
uninstall-local:
|
||||||
|
-rm -f $(DESTDIR)$(pkglibdir)/default.so
|
||||||
|
Loading…
Reference in New Issue
Block a user