svn commit: r502904 - head/x11-wm/i3

Piotr Kubaj pkubaj at FreeBSD.org
Tue May 28 18:23:17 UTC 2019


Author: pkubaj
Date: Tue May 28 18:23:16 2019
New Revision: 502904
URL: https://svnweb.freebsd.org/changeset/ports/502904

Log:
  x11-wm/i3: fix build with many threads
  
  i3 needs MAKE_JOBS_UNSAFE=yes to build.
  
  Errors:
  /wrkdirs/usr/ports/x11-wm/i3/work/i3-4.16/../i3-4.16/i3-config-wizard/main.c:109:10: fatal error: GENERATED_config_enums.h: No such file or directory
   #include "GENERATED_config_enums.h"
  
    ^~~~~~~~~~~~~~~~~~~~~~~~~~
  
  compilation terminated.
  
  PR:	237890
  Approved by:	tcberner (mentor), bapt (maintainer timeout)
  Differential Revision:	https://reviews.freebsd.org/D20438

Modified:
  head/x11-wm/i3/Makefile

Modified: head/x11-wm/i3/Makefile
==============================================================================
--- head/x11-wm/i3/Makefile	Tue May 28 17:26:32 2019	(r502903)
+++ head/x11-wm/i3/Makefile	Tue May 28 18:23:16 2019	(r502904)
@@ -35,6 +35,7 @@ CONFIGURE_OUTSOURCE=	yes
 CONFIGURE_ENV=	ac_cv_path_PATH_ASCIIDOC=""
 LDFLAGS+=	${ICONV_LIB}
 INSTALL_TARGET=	install-strip
+MAKE_JOBS_UNSAFE=	yes
 
 CONFLICTS_INSTALL=	i3-gaps
 


More information about the svn-ports-all mailing list