Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Jul 2015 11:15:25 +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: r391981 - head/sysutils/dvtm
Message-ID:  <201507141115.t6EBFPZg031345@repo.freebsd.org>

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



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