summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-24 16:11:21 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-24 16:11:21 +0200
commit9f5e36bc609b9210de386acfeb390802ad45bd0e (patch)
treebb3682869ec66a407467048a4d0e18e69fbd9018 /src
parentb31e4383cd027e3aaf60451d9efaac7de7608b76 (diff)
Find python3 also in lib64 directory. (Ben Boeckel)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/auto/configure2
-rw-r--r--src/configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/auto/configure b/src/auto/configure
index 209ad6c660..651c79221d 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -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"
diff --git a/src/configure.in b/src/configure.in
index 18c7ff1825..836d242847 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -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"