From 249be3ff310c5c9eb1a9ccb0843044943cbea2af Mon Sep 17 00:00:00 2001
From: Derek Schrock <dereks@lifeofadishwasher.com>
Date: Thu, 2 Sep 2021 19:15:02 -0400
Subject: [PATCH] editors/vim: PYTHON_CONFIGURE_ARGS ingored

OPT_CONFIGURE_ARGS isn't part of the options framework.  Use _ENABLE and
_WITH.
---
 editors/vim/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/editors/vim/Makefile b/editors/vim/Makefile
index b811d18014..fb39abac04 100644
--- a/editors/vim/Makefile
+++ b/editors/vim/Makefile
@@ -147,7 +147,8 @@ PERL_USES=		perl5
 
 PYTHON_USES=		python:3.6+
 PYTHON_USES_OFF=	python:env
-PYTHON_CONFIGURE_ARGS=	--enable-python3interp --with-python3-command=${PYTHON_CMD}
+PYTHON_CONFIGURE_ENABLE=	python3interp
+PYTHON_CONFIGURE_WITH=	python3-command=${PYTHON_CMD}
 
 RUBY_CONFIGURE_ENABLE=	rubyinterp
 RUBY_USE=		RUBY=yes
-- 
2.32.0