Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Jun 2015 04:52:13 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r390011 - head/security/p5-CryptX
Message-ID:  <201506180452.t5I4qDqg063071@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506180452.t5I4qDqg063071>