Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Oct 2016 13:39:11 +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: r423405 - head/www/httest
Message-ID:  <201610061339.u96DdBxB099742@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610061339.u96DdBxB099742>