Date: Thu, 10 Sep 2015 15:58:33 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396578 - head/archivers/zopfli Message-ID: <201509101558.t8AFwXwZ064954@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509101558.t8AFwXwZ064954>