12345678910111213141516171819202122232425262728293031323334353637 |
- From d0a234ac4fe9304c4178256584712e4359541060 Mon Sep 17 00:00:00 2001
- From: Jim Klimov <jimklimov+nut@gmail.com>
- Date: Wed, 3 Jul 2024 09:51:07 +0200
- Subject: [PATCH] configure.ac: typo in path to test with nut_telnetlib Python
- module [#2183]
- Signed-off-by: Jim Klimov <jimklimov+nut@gmail.com>
- Upstream: https://github.com/networkupstools/nut/commit/d0a234ac4fe9304c4178256584712e4359541060
- Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
- ---
- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
- diff --git a/configure.ac b/configure.ac
- index 935e73d368..e542baacd2 100644
- --- a/configure.ac
- +++ b/configure.ac
- @@ -2474,7 +2474,7 @@ if test x"${nut_with_pynut}" != xno \
- dnl this line essentially checks for presence of
- dnl a usable interpreter implementation compatible
- dnl with Python 3.x syntax.
- - if (cd script/python/module && ${PYTHON3} -c "import nut_telnetlib as telnetlib") \
- + if (cd scripts/python/module && ${PYTHON3} -c "import nut_telnetlib as telnetlib") \
- ; then
- nut_with_pynut_py3="yes"
- fi
- @@ -2491,7 +2491,7 @@ if test x"${nut_with_pynut}" != xno \
- nut_with_pynut_py="yes"
- else
- dnl See comments above
- - if (cd script/python/module && ${PYTHON} -c "import nut_telnetlib as telnetlib") \
- + if (cd scripts/python/module && ${PYTHON} -c "import nut_telnetlib as telnetlib") \
- ; then
- nut_with_pynut_py="yes"
- fi
|