From: George Joseph Date: Tue, 31 Jan 2017 18:46:08 +0000 (-0700) Subject: debug_utilities: Install ast_logescalator to /var/lib/asterisk/scripts X-Git-Tag: 13.14.0-rc1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fd28cefdb2a41308b22b6e29d9a10ff38acb2e5;p=thirdparty%2Fasterisk.git debug_utilities: Install ast_logescalator to /var/lib/asterisk/scripts Forgot to install it with the original patch Change-Id: I8bdb540a6694971ae5fe21f48d532332c6482e4c --- diff --git a/contrib/Makefile b/contrib/Makefile index a667243113..9512de540c 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -21,11 +21,13 @@ include $(ASTTOPDIR)/Makefile.rules install: $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/scripts" + $(INSTALL) -m 755 scripts/ast_logescalator "$(DESTDIR)$(ASTDATADIR)/scripts/ast_logescalator" $(INSTALL) -m 755 scripts/ast_loggrabber "$(DESTDIR)$(ASTDATADIR)/scripts/ast_loggrabber" $(INSTALL) -m 755 scripts/ast_coredumper "$(DESTDIR)$(ASTDATADIR)/scripts/ast_coredumper" $(INSTALL) -m 755 scripts/refcounter.py "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py" uninstall: + -rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/ast_logescalator" -rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/ast_loggrabber" -rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/ast_coredumper" -rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"