svn commit: r371637 - head/lang/rust

Bartek Rutkowski robak at FreeBSD.org
Tue Oct 28 14:21:29 UTC 2014


Author: robak
Date: Tue Oct 28 14:21:28 2014
New Revision: 371637
URL: https://svnweb.freebsd.org/changeset/ports/371637
QAT: https://qat.redports.org/buildarchive/r371637/

Log:
  lang/rust: fixes
  
  - Remove extra STRIP_CMD from the Makefile
  - Fix SRIP_CMD that was stripping statically linked libraries
  
  Approved by:	mentors (implicit)

Modified:
  head/lang/rust/Makefile

Modified: head/lang/rust/Makefile
==============================================================================
--- head/lang/rust/Makefile	Tue Oct 28 14:09:01 2014	(r371636)
+++ head/lang/rust/Makefile	Tue Oct 28 14:21:28 2014	(r371637)
@@ -56,8 +56,6 @@ post-extract:
 post-install:
 	@${RM} ${STAGEDIR}${PREFIX}/lib/rustlib/manifest
 	@${STRIP_CMD} `${GREP} -v -e '^@dir' -e '^man' -e 'rlib$$' \
-		${PLIST} | ${SED} 's:^:${STAGEDIR}${PREFIX}/:'`
-	@${STRIP_CMD} `${GREP} -v -e '^@dir' -e '^man' -e 'rlib$$' \
-		-e '\.a$$' ${PLIST} | ${SED} 's:^:${STAGEDIR}${PREFIX}/:g'`
+		-e '^.*\.a$$' ${PLIST} | ${SED} 's:^:${STAGEDIR}${PREFIX}/:'`
 
 .include <bsd.port.post.mk>


More information about the svn-ports-all mailing list