diff options
author | Luigi Rizzo <luigi@FreeBSD.org> | 2006-02-14 10:30:37 +0000 |
---|---|---|
committer | Luigi Rizzo <luigi@FreeBSD.org> | 2006-02-14 10:30:37 +0000 |
commit | b613e8d1c79eb9d5b6633320581862019c557080 (patch) | |
tree | 70a3c7e20f6114b7a66e4cdd210fb3b0bf32d842 /net/asterisk-devel/files/patch-agi::Makefile | |
parent | Document pf -- IP fragment handling panic, FreeBSD SA 06.07 (diff) |
update asterisk-devel after repo-copy
Diffstat (limited to 'net/asterisk-devel/files/patch-agi::Makefile')
-rw-r--r-- | net/asterisk-devel/files/patch-agi::Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/net/asterisk-devel/files/patch-agi::Makefile b/net/asterisk-devel/files/patch-agi::Makefile deleted file mode 100644 index b35976526f59..000000000000 --- a/net/asterisk-devel/files/patch-agi::Makefile +++ /dev/null @@ -1,28 +0,0 @@ - -$FreeBSD$ - ---- agi/Makefile.orig Thu Jan 12 15:42:07 2006 -+++ agi/Makefile Thu Jan 12 15:44:39 2006 -@@ -11,7 +11,9 @@ - # the GNU General Public License - # - --AGIS=agi-test.agi eagi-test eagi-sphinx-test -+AGIS_BIN=eagi-test eagi-sphinx-test -+AGIS_SCR=agi-test.agi -+AGIS=$(AGIS_SCR) $(AGIS_BIN) - - CFLAGS+= - -@@ -27,8 +29,9 @@ - all: depend $(AGIS) - - install: all -- mkdir -p $(DESTDIR)$(AGI_DIR) -- for x in $(AGIS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(AGI_DIR) ; done -+ $(MKDIR) -p $(DESTDIR)$(AGI_DIR) -+ for x in $(AGIS_BIN); do $(BSD_INSTALL_PROGRAM) $$x $(DESTDIR)$(AGI_DIR) ; done -+ for x in $(AGIS_SCR); do $(BSD_INSTALL_SCRIPT) $$x $(DESTDIR)$(AGI_DIR) ; done - - eagi-test: eagi-test.o - $(CC) $(CFLAGS) -o eagi-test eagi-test.o $(LIBS) |