Skip to content

Commit

Permalink
Enhance python mod autoconf
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelortmann committed Jun 20, 2024
1 parent a3c022a commit d097ee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mod/python.mod/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if test "x$egg_enable_python" != "xno"; then
else
if test -d "$egg_with_python_config"; then
AC_MSG_NOTICE([Checking for python-config binaries in $egg_with_python_config])
AC_PATH_PROGS([python_config_bin], [python3-config python-config], [], [$egg_with_python_config])
AC_PATH_PROGS([python_config_bin], [python3.12-config python3.11-config python3.10-config python3.9-config python3.8-config python3.7-config python3.6-config python3.5-config python3.4-config python3.3-config python3.2-config python3.1-config python3.0-config python3-config python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python-config], [], [$egg_with_python_config])
else
if test -x "$egg_with_python_config"; then
python_config_bin="$egg_with_python_config"
Expand Down

0 comments on commit d097ee8

Please sign in to comment.