Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Apr 2017 22:02:02 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r439130 - head/databases/libcouchbase
Message-ID:  <201704212202.v3LM22Fg024712@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@.  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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704212202.v3LM22Fg024712>