svn commit: r393200 - head/security/sslsplit/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Jul 29 22:49:24 UTC 2015


Author: amdmi3
Date: Wed Jul 29 22:49:22 2015
New Revision: 393200
URL: https://svnweb.freebsd.org/changeset/ports/393200

Log:
  - Fix installation from non-root
  
  Approved by:	portmgr blanket

Added:
  head/security/sslsplit/files/
  head/security/sslsplit/files/patch-GNUmakefile   (contents, props changed)

Added: head/security/sslsplit/files/patch-GNUmakefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/sslsplit/files/patch-GNUmakefile	Wed Jul 29 22:49:22 2015	(r393200)
@@ -0,0 +1,13 @@
+--- GNUmakefile.orig	2015-03-15 23:24:02 UTC
++++ GNUmakefile
+@@ -351,8 +351,8 @@ install: $(TARGET)
+ 	test -d $(DESTDIR)$(PREFIX)/bin || $(MKDIR) -p $(DESTDIR)$(PREFIX)/bin
+ 	test -d $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 || \
+ 		$(MKDIR) -p $(DESTDIR)$(PREFIX)/$(MANDIR)/man1
+-	$(INSTALL) -o 0 -g 0 -m 0755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/
+-	$(INSTALL) -o 0 -g 0 -m 0644 $(TARGET).1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1/
++	$(INSTALL) -m 0755 $(TARGET) $(DESTDIR)$(PREFIX)/bin/
++	$(INSTALL) -m 0644 $(TARGET).1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1/
+ 
+ deinstall:
+ 	$(RM) -f $(DESTDIR)$(PREFIX)/bin/$(TARGET) $(DESTDIR)$(PREFIX)/$(MANDIR)/man1/$(TARGET).1


More information about the svn-ports-all mailing list