aboutsummaryrefslogtreecommitdiffstats
path: root/finance
diff options
context:
space:
mode:
authormadpilot <madpilot@FreeBSD.org>2018-01-06 03:20:35 +0800
committermadpilot <madpilot@FreeBSD.org>2018-01-06 03:20:35 +0800
commit10bd3ba4d9d809f3a2077d251ac8423ca450ce33 (patch)
tree8b81f4fbc8888c9ce659110f4c4882d59d3f6063 /finance
parent86e45af18fdb621ba1713e23d1f19b3414918a61 (diff)
downloadfreebsd-ports-gnome-10bd3ba4d9d809f3a2077d251ac8423ca450ce33.tar.gz
freebsd-ports-gnome-10bd3ba4d9d809f3a2077d251ac8423ca450ce33.tar.zst
freebsd-ports-gnome-10bd3ba4d9d809f3a2077d251ac8423ca450ce33.zip
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
Diffstat (limited to 'finance')
-rw-r--r--finance/gnucash/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/finance/gnucash/Makefile b/finance/gnucash/Makefile
index a9d803e811b5..92c62e2bc151 100644
--- a/finance/gnucash/Makefile
+++ b/finance/gnucash/Makefile
@@ -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