- This version makes it work again with php 5.4 - Update WWW line in pkg-descr - While I'm here fix some portlint warnings PR: ports/170565 Submitted by: Guido Falsi <madpilot@FreeBSD.org> Approved by: maintainer timeout Approved by: tabthorpe (mentor)
11 lines
535 B
Text
11 lines
535 B
Text
--- lib/Makefile.in.orig 2012-05-25 11:56:37.407786228 +0200
|
|
+++ lib/Makefile.in 2012-05-25 11:57:20.247777075 +0200
|
|
@@ -22,7 +22,7 @@
|
|
|
|
install:
|
|
|
|
- $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)
|
|
+ [ -d "$(DESTDIR)$(LIBDIR)" ] || $(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)/kohana
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)/kohana/system
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBDIR)/kohana/system/controllers
|