From fc2cc873bb1a715844a1e6f885661bf433bdd7cf Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 5 Dec 2004 07:44:08 +0000 Subject: Update links to new freedesktop.org locations Add uninstall-local to get rid of fonts.conf and local.conf if they match the distributed versions. Fixes 'make distcheck' --- Makefile.am | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index c1e48a1..7079027 100644 --- a/Makefile.am +++ b/Makefile.am @@ -62,3 +62,27 @@ install-data-local: $(INSTALL_DATA) local.conf $(DESTDIR)$(configdir)/local.conf; \ fi; fi; fi if [ x$(DESTDIR) = x ]; then fc-cache/fc-cache -f -v; fi + +uninstall-local: + if [ -f $(srcdir)/fonts.conf ]; then \ + if cmp -s $(srcdir)/fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \ + echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \ + rm -f $(DESTDIR)$(configdir)/fonts.conf; \ + fi; \ + else if [ -f fonts.conf ]; then \ + if cmp -s fonts.conf $(DESTDIR)$(configdir)/fonts.conf; then \ + echo " uninstall standard $(DESTDIR)$(configdir)/fonts.conf"; \ + rm -f $(DESTDIR)$(configdir)/fonts.conf; \ + fi; \ + fi; fi + if [ -f $(srcdir)/local.conf ]; then \ + if cmp -s $(srcdir)/local.conf $(DESTDIR)$(configdir)/local.conf; then \ + echo " uninstall standard $(DESTDIR)$(configdir)/local.conf"; \ + rm -f $(DESTDIR)$(configdir)/local.conf; \ + fi; \ + else if [ -f local.conf ]; then \ + if cmp -s local.conf $(DESTDIR)$(configdir)/local.conf; then \ + echo " uninstall standard $(DESTDIR)$(configdir)/local.conf"; \ + rm -f $(DESTDIR)$(configdir)/local.conf; \ + fi; \ + fi; fi -- cgit v1.2.3