Date: Wed, 14 Feb 2018 13:27:13 +0000 (UTC) From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= <romain@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461788 - head/devel/cpp-hocon Message-ID: <201802141327.w1EDRDbm092448@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: romain Date: Wed Feb 14 13:27:13 2018 New Revision: 461788 URL: https://svnweb.freebsd.org/changeset/ports/461788 Log: Fix build when gettext is installed When building, if gettext(1) is found, CMake generates rules to update the cpp-hocon.pot translation file. However, the generated rules for ninja(1) are broken and break the build. Always rely on regular make(1) in order to avoid this situation. Not bumping PORTREVISION since successfully built packages are not affected by this change. Reported by: marius.schuller@makandra.de (by mail to puppet@) Modified: head/devel/cpp-hocon/Makefile Modified: head/devel/cpp-hocon/Makefile ============================================================================== --- head/devel/cpp-hocon/Makefile Wed Feb 14 13:05:14 2018 (r461787) +++ head/devel/cpp-hocon/Makefile Wed Feb 14 13:27:13 2018 (r461788) @@ -21,7 +21,7 @@ PLIST_SUB+= PORTVERSION="${PORTVERSION}" CMAKE_ARGS+= -DBUILD_SHARED_LIBS=SHARED TEST_TARGET= test -USES= cmake +USES= cmake:noninja USE_LDCONFIG= yes .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802141327.w1EDRDbm092448>