svn commit: r316711 - head/archivers/par

Alexey Dokuchaev danfe at FreeBSD.org
Sun Apr 28 10:00:26 UTC 2013


Author: danfe
Date: Sun Apr 28 10:00:25 2013
New Revision: 316711
URL: http://svnweb.freebsd.org/changeset/ports/316711

Log:
  Enforce correct type (per specification) and drop unneeded backslashes.

Modified:
  head/archivers/par/Makefile

Modified: head/archivers/par/Makefile
==============================================================================
--- head/archivers/par/Makefile	Sun Apr 28 09:48:29 2013	(r316710)
+++ head/archivers/par/Makefile	Sun Apr 28 10:00:25 2013	(r316711)
@@ -24,7 +24,8 @@ OPTIONS_DEFINE=	DOCS
 
 post-patch:
 	@${REINPLACE_CMD} -e 's,-Wall.*-pipe,${CFLAGS}, ; \
-		s,\"Linux,\"${OPSYS},' ${WRKSRC}/${MAKEFILE}
+		s,"Linux,"${OPSYS},' ${WRKSRC}/${MAKEFILE}
+	@${REINPLACE_CMD} -e 's,off_t,uint32_t,g' ${WRKSRC}/par.c
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin


More information about the svn-ports-all mailing list