svn commit: r385705 - head/mail/rss2email2

Dmitry Marakasov amdmi3 at FreeBSD.org
Thu May 7 22:40:07 UTC 2015


Author: amdmi3
Date: Thu May  7 22:40:06 2015
New Revision: 385705
URL: https://svnweb.freebsd.org/changeset/ports/385705

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

Modified:
  head/mail/rss2email2/Makefile

Modified: head/mail/rss2email2/Makefile
==============================================================================
--- head/mail/rss2email2/Makefile	Thu May  7 22:38:01 2015	(r385704)
+++ head/mail/rss2email2/Makefile	Thu May  7 22:40:06 2015	(r385705)
@@ -27,6 +27,10 @@ PORTEXAMPLES=	config.py.example
 
 OPTIONS_DEFINE=	EXAMPLES
 
+post-extract:
+	@${FIND} ${WRKSRC} -type d -exec ${CHMOD} 755 {} \;
+	@${FIND} ${WRKSRC} -type f -exec ${CHMOD} 644 {} \;
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|@PYTHONCMD@|${PYTHON_CMD}|;s|@DATADIR@|${DATADIR}|'\
 		${WRKSRC}/r2e


More information about the svn-ports-all mailing list