Skip to content
Snippets Groups Projects
Commit c2101703 authored by Loic Hausammann's avatar Loic Hausammann
Browse files

Python: use /usr by default

parent db07cdfb
No related branches found
No related tags found
1 merge request!685Logger loader
......@@ -1007,6 +1007,10 @@ AC_ARG_WITH([python],
[with_python="no"]
)
if test "x$with_python" != "xno"; then
if test "$with_python" == ""; then
# use linux default python
with_python="/usr/"
fi
AM_PATH_PYTHON([3], [], [AC_MSG_ERROR(python not found)])
AC_ARG_VAR([PYTHON_INCS], [Include flags for python, bypassing python-config])
AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment