svn commit: r421006 - head/sysutils/abduco

John Marino marino at FreeBSD.org
Sun Aug 28 06:49:38 UTC 2016


Author: marino
Date: Sun Aug 28 06:49:37 2016
New Revision: 421006
URL: https://svnweb.freebsd.org/changeset/ports/421006

Log:
  sysutils/abduco is not jobs another
  
  Abduco is another brilliant example featuring an "all" target that
  depends on a "clean" target that runs concurrently with a build target
  under -jX causing built object files to be deleted before they are
  used.  Presumably the fix would be to remove the useless dependency
  on the "clean" target.

Modified:
  head/sysutils/abduco/Makefile

Modified: head/sysutils/abduco/Makefile
==============================================================================
--- head/sysutils/abduco/Makefile	Sun Aug 28 06:02:09 2016	(r421005)
+++ head/sysutils/abduco/Makefile	Sun Aug 28 06:49:37 2016	(r421006)
@@ -16,6 +16,8 @@ MAKE_ARGS=	CPPFLAGS="${CPPFLAGS}" STRIP=
 PLIST_FILES=	bin/abduco \
 		man/man1/abduco.1.gz
 
+MAKE_JOBS_UNSAFE= 	yes
+
 pre-everything::
 	@${ECHO_MSG} "You can build abduco with your own config.h using the ABDUCO_CONF knob:"
 	@${ECHO_MSG} "make ABDUCO_CONF=/path/to/abduco/config.h install clean"


More information about the svn-ports-all mailing list