diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2007-09-18 00:10:25 +0000 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2007-09-18 00:10:25 +0000 |
commit | 9064d76275ae3de97aa0674e5f25625738a285e1 (patch) | |
tree | 7296f5100c56a2e9ad9cfa77a7aad0cba11a1715 /ftp/proftpd-devel/files/patch-modules-Makefile.in | |
parent | - Chase updated distfile, at 4.2.198.2451 now (diff) |
- Add patch to fix build.
Approved by: sat (maintainer)
Obtained from: TJ Saunders <tj@castaglia.org> (developer)
Diffstat (limited to 'ftp/proftpd-devel/files/patch-modules-Makefile.in')
-rw-r--r-- | ftp/proftpd-devel/files/patch-modules-Makefile.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ftp/proftpd-devel/files/patch-modules-Makefile.in b/ftp/proftpd-devel/files/patch-modules-Makefile.in new file mode 100644 index 000000000000..7bf4e642ed27 --- /dev/null +++ b/ftp/proftpd-devel/files/patch-modules-Makefile.in @@ -0,0 +1,25 @@ +Index: modules/Makefile.in +=================================================================== +RCS file: /cvsroot/proftp/proftpd/modules/Makefile.in,v +retrieving revision 1.24 +diff -u -r1.24 Makefile.in +--- modules/Makefile.in 8 Jan 2007 19:58:22 -0000 1.24 ++++ modules/Makefile.in 17 Sep 2007 17:27:11 -0000 +@@ -50,7 +50,7 @@ + test -z "$(SHARED_MODULE_OBJS)" || $(LIBTOOL) --mode=install $(INSTALL_BIN) $(SHARED_MODULE_OBJS) $(DESTDIR)$(LIBEXECDIR) + @dirs="$(SHARED_MODULE_DIRS)"; \ + for dir in $$dirs; do\ +- cd $(top_srcdir)/$$dir/ && $(MAKE) install; \ ++ (cd $(top_srcdir)/$$dir/ && $(MAKE) install); \ + done + + clean: +@@ -59,7 +59,7 @@ + $(LIBTOOL) --mode=clean $(RM) `echo $(SHARED_MODULE_OBJS) | sed 's/\.la$\/.lo/g'` + @dirs="$(SHARED_MODULE_DIRS) $(STATIC_MODULE_DIRS)"; \ + for dir in $$dirs; do\ +- cd $(top_srcdir)/$$dir/ && $(MAKE) clean; \ ++ (cd $(top_srcdir)/$$dir/ && $(MAKE) clean); \ + done + + depend: |