From 7363244381bf598478a25cdafa081d75301a4150 Mon Sep 17 00:00:00 2001 From: Steve Murphy Date: Wed, 11 Jul 2007 18:18:42 +0000 Subject: [PATCH] This fixes 10172, where the entire man8 dir gets removed during an uninstall of asterisk git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@74642 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1731d5d3d2..fb8466a35b 100644 --- a/Makefile +++ b/Makefile @@ -643,7 +643,10 @@ _uninstall: $(SUBDIRS_UNINSTALL) rm -f $(DESTDIR)$(ASTSBINDIR)/autosupport rm -rf $(DESTDIR)$(ASTHEADERDIR) rm -rf $(DESTDIR)$(ASTDATADIR)/firmware - rm -rf $(DESTDIR)$(ASTMANDIR)/man8 + rm -f $(DESTDIR)$(ASTMANDIR)/man8/asterisk.8 + rm -f $(DESTDIR)$(ASTMANDIR)/man8/astgenkey.8 + rm -f $(DESTDIR)$(ASTMANDIR)/man8/autosupport.8 + rm -f $(DESTDIR)$(ASTMANDIR)/man8/safe_asterisk.8 $(MAKE) -C sounds uninstall uninstall: _uninstall