svn commit: r462364 - head/games/tuxpaint

Don Lewis truckman at FreeBSD.org
Tue Feb 20 00:15:57 UTC 2018


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 \


More information about the svn-ports-head mailing list