# HG changeset patch
# User Ben Boeckel <[email protected]>
# Date 1279952270 14400
# Branch vim73
# Node ID 863a37c8086186b6701e0c9b4e34581743981708
# Parent b67b0b5a93d38fe87a46d1b69b40fc7e567a28ca
Add lib64 to python3 config directory search
Fedora 64bit uses /usr/lib64, include it in the search path.
diff --git a/src/configure.in b/src/configure.in
--- a/src/configure.in
+++ b/src/configure.in
@@ -974,7 +974,7 @@
[
vi_cv_path_python3_conf=
for path in "${vi_cv_path_python3_pfx}" "${vi_cv_path_python3_epfx}"; do
- for subdir in lib share; do
+ for subdir in lib64 lib share; do
d="${path}/${subdir}/python${vi_cv_var_python3_version}/config"
if test -d "$d" && test -f "$d/config.c"; then
vi_cv_path_python3_conf="$d"
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php