summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Murphy <murf@digium.com>2007-07-11 18:21:23 +0000
committerSteve Murphy <murf@digium.com>2007-07-11 18:21:23 +0000
commitae78bb14dba74496d439a87b951e48fe97922a3f (patch)
treedede4c0bc1f3423b009a6b2a0c574081ba4fdfd3
parentba2e851879b978b7b3df0ee01bf182b244238fa0 (diff)
Merged revisions 74642 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r74642 | murf | 2007-07-11 12:18:42 -0600 (Wed, 11 Jul 2007) | 1 line This fixes 10172, where the entire man8 dir gets removed during an uninstall of asterisk ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@74648 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index be1830f1d..fe6211d26 100644
--- a/Makefile
+++ b/Makefile
@@ -652,7 +652,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