svn commit: r451472 - head/devel/leatherman

Raphael Kubo da Costa rakuco at FreeBSD.org
Sat Oct 7 18:32:20 UTC 2017


Author: rakuco
Date: Sat Oct  7 18:32:18 2017
New Revision: 451472
URL: https://svnweb.freebsd.org/changeset/ports/451472

Log:
  Switch to an out-of-source CMake build.
  
  It does not have any bad side-effects, and out-of-source builds are recommended
  by CMake. In this case, it also avoids ninja warnings that become errors with
  Ninja 1.8:
  
  ninja: warning: multiple rules generate locales/leatherman.pot. builds involving this target will not be correct; continuing anyway [-w dupbuild=warn]
  ninja: warning: multiple rules generate locale/locales/leatherman_locale.pot. builds involving this target will not be correct; continuing anyway [-w dupbuild=warn]
  ninja: warning: multiple rules generate logging/locales/leatherman_logging.pot. builds involving this target will not be correct; continuing anyway [-w dupbuild=warn]
  
  PR:		222770

Modified:
  head/devel/leatherman/Makefile

Modified: head/devel/leatherman/Makefile
==============================================================================
--- head/devel/leatherman/Makefile	Sat Oct  7 18:31:16 2017	(r451471)
+++ head/devel/leatherman/Makefile	Sat Oct  7 18:32:18 2017	(r451472)
@@ -19,7 +19,7 @@ BROKEN_powerpc64=	fails to compile: cc1plus: error: un
 USE_GITHUB=	yes
 GH_ACCOUNT=	puppetlabs
 
-USES=		cmake gettext
+USES=		cmake:outsource gettext
 USE_RUBY=	yes
 CMAKE_ARGS=	-DLEATHERMAN_SHARED:BOOL=ON
 USE_LDCONFIG=	yes


More information about the svn-ports-all mailing list