svn commit: r416264 - head/databases/luadbi

John Marino marino at FreeBSD.org
Wed Jun 1 23:03:39 UTC 2016


Author: marino
Date: Wed Jun  1 23:03:37 2016
New Revision: 416264
URL: https://svnweb.freebsd.org/changeset/ports/416264

Log:
  databases/luadbi is not jobs safe
  
  I've witnessed this port fail two separate times because it doesn't ensure
  that the "build" directory has been created before it starts constructing
  object files.

Modified:
  head/databases/luadbi/Makefile

Modified: head/databases/luadbi/Makefile
==============================================================================
--- head/databases/luadbi/Makefile	Wed Jun  1 22:55:09 2016	(r416263)
+++ head/databases/luadbi/Makefile	Wed Jun  1 23:03:37 2016	(r416264)
@@ -18,6 +18,8 @@ NO_WRKSUBDIR=	yes
 USES=		gmake lua:51 shebangfix
 SHEBANG_FILES=	DBI.lua
 
+MAKE_JOBS_UNSAFE=	yes
+
 CFLAGS+=	-fpic -I${LOCALBASE}/include -I${LUA_INCDIR} -I. \
 		-I${LOCALBASE}/include/postgresql/server
 LDFLAGS+=	-shared -L${LOCALBASE}/lib -L${LUA_LIBDIR}


More information about the svn-ports-head mailing list