svn commit: r396578 - head/archivers/zopfli

John Marino marino at FreeBSD.org
Thu Sep 10 15:58:33 UTC 2015


Author: marino
Date: Thu Sep 10 15:58:32 2015
New Revision: 396578
URL: https://svnweb.freebsd.org/changeset/ports/396578

Log:
  archivers/zopfli is not jobs safe
  
  This port has failed a few times on me.  Looking at the log, it appears
  to attempt to create libzopflipng.so way before all the object files
  are created in a multijob environment, so the makefile is probably
  missing the prerequisite definitions.

Modified:
  head/archivers/zopfli/Makefile

Modified: head/archivers/zopfli/Makefile
==============================================================================
--- head/archivers/zopfli/Makefile	Thu Sep 10 15:24:12 2015	(r396577)
+++ head/archivers/zopfli/Makefile	Thu Sep 10 15:58:32 2015	(r396578)
@@ -24,6 +24,8 @@ CFLAGS+=	-fPIC # XXX Convert into an imp
 LDFLAGS+=	-lm
 USE_LDCONFIG=	yes
 
+MAKE_JOBS_UNSAFE=	yes
+
 do-install:
 .for f in ${PORTNAME} ${PORTNAME}png
 	${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin


More information about the svn-ports-head mailing list