svn commit: r390011 - head/security/p5-CryptX

Vanilla I. Shu vanilla at FreeBSD.org
Thu Jun 18 04:52:14 UTC 2015


Author: vanilla
Date: Thu Jun 18 04:52:13 2015
New Revision: 390011
URL: https://svnweb.freebsd.org/changeset/ports/390011

Log:
  Fix build on non-root user.
  
  Submitted by:	mat@

Modified:
  head/security/p5-CryptX/Makefile

Modified: head/security/p5-CryptX/Makefile
==============================================================================
--- head/security/p5-CryptX/Makefile	Thu Jun 18 02:29:40 2015	(r390010)
+++ head/security/p5-CryptX/Makefile	Thu Jun 18 04:52:13 2015	(r390011)
@@ -21,7 +21,9 @@ USES=		perl5
 USE_PERL5=	modbuild
 
 post-install:
+	${CHMOD} u+w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/CryptX/CryptX.so
 	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/CryptX/CryptX.so
+	${CHMOD} u-w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/CryptX/CryptX.so
 
 regression-test: build
 	@cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${PERL5} ${PL_BUILD} ${MAKE_ARGS} test


More information about the svn-ports-all mailing list