1
0
forked from aniani/vim

Find python3 also in lib64 directory. (Ben Boeckel)

This commit is contained in:
Bram Moolenaar
2010-07-24 16:11:21 +02:00
parent b31e4383cd
commit 9f5e36bc60
2 changed files with 2 additions and 2 deletions

2
src/auto/configure vendored
View File

@@ -5507,7 +5507,7 @@ else
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"

View File

@@ -975,7 +975,7 @@ if test "$enable_python3interp" = "yes"; then
[
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"