svn commit: r461788 - head/devel/cpp-hocon
Romain Tartière
romain at FreeBSD.org
Wed Feb 14 13:27:14 UTC 2018
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 at 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>
More information about the svn-ports-all
mailing list