From owner-svn-ports-all@freebsd.org Fri Jan 5 19:20:36 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 754DEEBB0AC; Fri, 5 Jan 2018 19:20:36 +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 mx1.freebsd.org (Postfix) with ESMTPS id 419C0792B1; Fri, 5 Jan 2018 19:20:36 +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 w05JKZCH039793; Fri, 5 Jan 2018 19:20:35 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w05JKZ2o039790; Fri, 5 Jan 2018 19:20:35 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201801051920.w05JKZ2o039790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Fri, 5 Jan 2018 19:20:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458165 - head/finance/gnucash X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/finance/gnucash X-SVN-Commit-Revision: 458165 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: Fri, 05 Jan 2018 19:20:36 -0000 Author: madpilot Date: Fri Jan 5 19:20:35 2018 New Revision: 458165 URL: https://svnweb.freebsd.org/changeset/ports/458165 Log: Fix conditional in flavoring. I missed this change when I committed the approved review. Reviewed by: portmgr (mat) Approved by: portmgr (mat) MFH: 2018Q1 Differential Revision: https://reviews.freebsd.org/D13478 Modified: head/finance/gnucash/Makefile Modified: head/finance/gnucash/Makefile ============================================================================== --- head/finance/gnucash/Makefile Fri Jan 5 19:18:07 2018 (r458164) +++ head/finance/gnucash/Makefile Fri Jan 5 19:20:35 2018 (r458165) @@ -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