svn commit: r391981 - head/sysutils/dvtm

John Marino marino at FreeBSD.org
Tue Jul 14 11:15:25 UTC 2015


Author: marino
Date: Tue Jul 14 11:15:24 2015
New Revision: 391981
URL: https://svnweb.freebsd.org/changeset/ports/391981

Log:
  sysutils dvtm is not jobs safe
  
  This has failed on me twice so far in a multi-job build.  In the last
  case, the dvtm program was being constructed before the dvtm.o object
  was built, so it's a problem with the makefile.

Modified:
  head/sysutils/dvtm/Makefile

Modified: head/sysutils/dvtm/Makefile
==============================================================================
--- head/sysutils/dvtm/Makefile	Tue Jul 14 10:59:17 2015	(r391980)
+++ head/sysutils/dvtm/Makefile	Tue Jul 14 11:15:24 2015	(r391981)
@@ -11,6 +11,8 @@ COMMENT=	Tiling window management for th
 PLIST_FILES=	bin/dvtm bin/dvtm-status \
 		man/man1/dvtm.1.gz
 
+MAKE_JOBS_UNSAFE=	yes
+
 pre-everything::
 	@${ECHO_MSG} "You can build dvtm with your own config.h using the DVTM_CONF knob:"
 	@${ECHO_MSG} "make DVTM_CONF=/path/to/dvtm/config.h install clean"


More information about the svn-ports-head mailing list