mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
fe6e4612ca
- 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)
12 lines
535 B
Plaintext
12 lines
535 B
Plaintext
--- 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
|