Date: Fri, 5 Jan 2018 19:20:35 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458165 - head/finance/gnucash Message-ID: <201801051920.w05JKZ2o039790@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801051920.w05JKZ2o039790>