From owner-svn-ports-all@freebsd.org Wed Feb 14 13:27:14 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5E98F2249C; Wed, 14 Feb 2018 13:27:13 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 97AE376F13; Wed, 14 Feb 2018 13:27:13 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9276E105EB; Wed, 14 Feb 2018 13:27:13 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1EDRDEl092449; Wed, 14 Feb 2018 13:27:13 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1EDRDbm092448; Wed, 14 Feb 2018 13:27:13 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201802141327.w1EDRDbm092448@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Wed, 14 Feb 2018 13:27:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461788 - head/devel/cpp-hocon X-SVN-Group: ports-head X-SVN-Commit-Author: romain X-SVN-Commit-Paths: head/devel/cpp-hocon X-SVN-Commit-Revision: 461788 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Feb 2018 13:27:14 -0000 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