From 53a56fcfe7df4603bfdf34eb969be0b4579dc962 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 23 Jun 2006 01:29:41 +0000 Subject: [PATCH] remove various commands that remove old modules since they have been there a sufficient amount of time. Even if they happen to be still present, the main Makefile will spit out a huge warning telling the user that modules not installed by that run of "make install" are present in the modules directory. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35605 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/Makefile | 3 --- funcs/Makefile | 1 - res/Makefile | 3 --- 3 files changed, 7 deletions(-) diff --git a/apps/Makefile b/apps/Makefile index 3601da45c6..2fdde40b40 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -42,9 +42,6 @@ app_rpt.o: app_rpt.c install: all for x in $(MODS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(MODULES_DIR) ; done - rm -f $(DESTDIR)$(MODULES_DIR)/app_cut.so - rm -f $(DESTDIR)$(MODULES_DIR)/app_datetime.so - rm -f $(DESTDIR)$(MODULES_DIR)/app_qcall.so uninstall: diff --git a/funcs/Makefile b/funcs/Makefile index 6172ed3185..b9e55d1e61 100644 --- a/funcs/Makefile +++ b/funcs/Makefile @@ -57,7 +57,6 @@ func_odbc.o: func_odbc.c install: all for x in $(MODS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(MODULES_DIR) ; done - rm -f $(DESTDIR)$(MODULES_DIR)/pbx_functions.so uninstall: diff --git a/res/Makefile b/res/Makefile index 9ee5a2e62b..c8781ed1c1 100644 --- a/res/Makefile +++ b/res/Makefile @@ -45,9 +45,6 @@ MODS:=$(patsubst %,%.so,$(SELECTED_MODS)) all: $(MODS) install: all - rm -f $(DESTDIR)$(ASTHEADERDIR)/parking.h - rm -f $(DESTDIR)$(MODULES_DIR)/app_agi.so - rm -f $(DESTDIR)$(MODULES_DIR)/res_parking.so for x in $(MODS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(MODULES_DIR) ; done @if [ x`which mpg123 2>/dev/null | grep -v '^no'` != x ] ; then \ if mpg123 --longhelp 2>&1 | grep -q .59r 2>&1 >/dev/null ; then echo ; else \