From owner-svn-ports-head@freebsd.org Tue Jul 14 11:15:25 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 465BA99CFF7; Tue, 14 Jul 2015 11:15:25 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37024E57; Tue, 14 Jul 2015 11:15:25 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6EBFPXv031346; Tue, 14 Jul 2015 11:15:25 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6EBFPZg031345; Tue, 14 Jul 2015 11:15:25 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201507141115.t6EBFPZg031345@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 14 Jul 2015 11:15:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391981 - head/sysutils/dvtm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jul 2015 11:15:25 -0000 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"