svn commit: r439130 - head/databases/libcouchbase

Alexey Dokuchaev danfe at FreeBSD.org
Fri Apr 21 22:02:03 UTC 2017


Author: danfe
Date: Fri Apr 21 22:02:02 2017
New Revision: 439130
URL: https://svnweb.freebsd.org/changeset/ports/439130

Log:
  Remove MAKE_JOBS_UNSAFE marker: it was added as part of r421281 upon the
  port's inception as of version 2.6.2, however, it was neither present in
  submitted PR nor explained in the original commit log by pi at .  So far my
  quick tests do not show evidence that it is parallel-build unsafe.
  
  We'll ask for forgiveness if it is indeed broken against -j X builds and
  reinstate MAKE_JOBS_UNSAFE, but with a proper explanation this time.
  
  While here, remove needless += from CMAKE_ARGS and place them at a better
  location within the Makefile.
  
  PR:	205377

Modified:
  head/databases/libcouchbase/Makefile

Modified: head/databases/libcouchbase/Makefile
==============================================================================
--- head/databases/libcouchbase/Makefile	Fri Apr 21 20:25:00 2017	(r439129)
+++ head/databases/libcouchbase/Makefile	Fri Apr 21 22:02:02 2017	(r439130)
@@ -14,13 +14,11 @@ LIB_DEPENDS=	libevent.so:devel/libevent 
 		libev.so:devel/libev \
 		libuv.so:devel/libuv
 
-CMAKE_ARGS+=	-DLCB_NO_TESTS=1
-
 USES=		cmake perl5 ssl
 USE_LDCONFIG=	yes
 USE_PERL5=	build run
 
-MAKE_JOBS_UNSAFE=	yes
+CMAKE_ARGS=	-DLCB_NO_TESTS=1
 
 BROKEN_aarch64=		Fails to link: error adding symbols: File in wrong format
 BROKEN_mips64=		Fails to link: ld: failed to merge target specific data


More information about the svn-ports-head mailing list