diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2018-08-16 21:04:01 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2018-08-16 21:04:01 +0000 |
commit | 9bf68f57dd58eb7e88504edb20d559c0de820d13 (patch) | |
tree | 1517479ef0c96ab94dc6366984e71778c67e7a6b /editors/vim/files/patch-src-auto-configure | |
parent | net-mgmt/alertmanager: Update to 0.15.2 (diff) |
Improve the way vim looks for python binaries
Previously, we patched in the names of all the python binary versions, but
I have been doing a terrible job of keeping them up-to-date. Instead, just
tell vim's configure script the path to the binary we're using.
This will fix building against python 3.7.
PR: 230675
Reported by: Kamigishi Rei
MFH: 2018Q3
Diffstat (limited to 'editors/vim/files/patch-src-auto-configure')
-rw-r--r-- | editors/vim/files/patch-src-auto-configure | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/editors/vim/files/patch-src-auto-configure b/editors/vim/files/patch-src-auto-configure index 15882f62b7cd..39bc29256854 100644 --- a/editors/vim/files/patch-src-auto-configure +++ b/editors/vim/files/patch-src-auto-configure @@ -46,21 +46,3 @@ fi if test "X$LUA_CFLAGS$LUA_LIBS" != "X" && \ test "x$MACOS_X" = "xyes" && test "x$vi_cv_with_luajit" != "xno" && \ -@@ -6230,7 +6231,7 @@ fi - - - if test "X$vi_cv_path_python" = "X"; then -- for ac_prog in python2 python -+ for ac_prog in python2.7 - do - # Extract the first word of "$ac_prog", so it can be a program name with args. - set dummy $ac_prog; ac_word=$2 -@@ -6580,7 +6581,7 @@ fi - - - if test "X$vi_cv_path_python3" = "X"; then -- for ac_prog in python3 python -+ for ac_prog in python3.6 python3.5 python3.4 - do - # Extract the first word of "$ac_prog", so it can be a program name with args. - set dummy $ac_prog; ac_word=$2 |