From owner-svn-ports-head@freebsd.org Tue Feb 20 00:15:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D346EF0CEE8; Tue, 20 Feb 2018 00:15:56 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8597F74B70; Tue, 20 Feb 2018 00:15:56 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7FC0B21A33; Tue, 20 Feb 2018 00:15:56 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1K0Fu8v038140; Tue, 20 Feb 2018 00:15:56 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1K0Fum4038139; Tue, 20 Feb 2018 00:15:56 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201802200015.w1K0Fum4038139@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Tue, 20 Feb 2018 00:15:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462364 - head/games/tuxpaint X-SVN-Group: ports-head X-SVN-Commit-Author: truckman X-SVN-Commit-Paths: head/games/tuxpaint X-SVN-Commit-Revision: 462364 X-SVN-Commit-Repository: ports 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.25 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, 20 Feb 2018 00:15:57 -0000 Author: truckman Date: Tue Feb 20 00:15:56 2018 New Revision: 462364 URL: https://svnweb.freebsd.org/changeset/ports/462364 Log: Add MAKE_JOBS_UNSAFE=yes to avoid this parallel build failure: msgfmt: error while opening "trans/ak.mo" for writing: No such file or directory gmake[1]: *** [Makefile:414: trans/ak.mo] Error 1 gmake[1]: *** Waiting for unfinished jobs.... ...Preparing translation files... 30 warnings generated. gmake[1]: Leaving directory '/wrkdirs/usr/ports/games/tuxpaint/work/tuxpaint-0.9.22' ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. Modified: head/games/tuxpaint/Makefile Modified: head/games/tuxpaint/Makefile ============================================================================== --- head/games/tuxpaint/Makefile Tue Feb 20 00:14:40 2018 (r462363) +++ head/games/tuxpaint/Makefile Tue Feb 20 00:15:56 2018 (r462364) @@ -34,6 +34,8 @@ MAKE_ARGS= CPPFLAGS="-I${LOCALBASE}/include" \ SHARED_FLAGS="-shared -fPIC" \ GPERF="${GPERF}" +MAKE_JOBS_UNSAFE= yes + INSTALL_TARGET= install-gettext install-im install-magic-plugins \ install-magic-plugin-dev install-default-config \ install-example-stamps install-example-starters \