From owner-svn-ports-all@freebsd.org Wed Jan 10 19:42:35 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE47DE7238B; Wed, 10 Jan 2018 19:42:35 +0000 (UTC) (envelope-from madpilot@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 A946B63C9B; Wed, 10 Jan 2018 19:42:35 +0000 (UTC) (envelope-from madpilot@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 E6CD72125; Wed, 10 Jan 2018 19:42:34 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0AJgYQZ081574; Wed, 10 Jan 2018 19:42:34 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0AJgYCG081573; Wed, 10 Jan 2018 19:42:34 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201801101942.w0AJgYCG081573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 10 Jan 2018 19:42:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r458683 - branches/2018Q1/finance/gnucash X-SVN-Group: ports-branches X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: branches/2018Q1/finance/gnucash X-SVN-Commit-Revision: 458683 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, 10 Jan 2018 19:42:35 -0000 Author: madpilot Date: Wed Jan 10 19:42:34 2018 New Revision: 458683 URL: https://svnweb.freebsd.org/changeset/ports/458683 Log: MFH: r458165 Fix conditional in flavoring. I missed this change when I committed the approved review. Reviewed by: portmgr (mat) Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D13478 Approved by: ports-secteam (swills) Modified: branches/2018Q1/finance/gnucash/Makefile Directory Properties: branches/2018Q1/ (props changed) Modified: branches/2018Q1/finance/gnucash/Makefile ============================================================================== --- branches/2018Q1/finance/gnucash/Makefile Wed Jan 10 19:33:07 2018 (r458682) +++ branches/2018Q1/finance/gnucash/Makefile Wed Jan 10 19:42:34 2018 (r458683) @@ -100,7 +100,7 @@ GLIB_SCHEMAS= org.gnucash.dialogs.business.gschema.xml .if ${FLAVOR:U} == guile1 CONFIGURE_ARGS+= --with-guile=1.8 PLIST_SUB+= GUILE2="@comment " -.elif ${FLAVOR:U} == guile2 +.elif ${FLAVOR:U${FLAVORS:[1]}} == guile2 CONFIGURE_ARGS+= --with-guile=2.0 PLIST_SUB+= GUILE2="" .endif