svn commit: r423405 - head/www/httest

John Marino marino at FreeBSD.org
Thu Oct 6 13:39:12 UTC 2016


Author: marino
Date: Thu Oct  6 13:39:10 2016
New Revision: 423405
URL: https://svnweb.freebsd.org/changeset/ports/423405

Log:
  www/httest is not jobs safe
  
  It doesn't happen oftem, but it's possible for an object file to be
  used before it's fully built.  In my last case, worker.o was empty when
  httest itself was being linked.

Modified:
  head/www/httest/Makefile

Modified: head/www/httest/Makefile
==============================================================================
--- head/www/httest/Makefile	Thu Oct  6 13:07:12 2016	(r423404)
+++ head/www/httest/Makefile	Thu Oct  6 13:39:10 2016	(r423405)
@@ -34,6 +34,8 @@ PORTEXAMPLES=	*
 
 INSTALL_TARGET=	install-strip
 
+MAKE_JOBS_UNSAFE=	yes
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|`$$APR_CONFIG --cflags`||; s|-llua|-llua-${LUA_VER}|g' ${WRKSRC}/configure
 	@${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/generate_modules_c.sh


More information about the svn-ports-head mailing list