1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

python: Fix initialization of variable.

(This used to be commit 620ec69665)
This commit is contained in:
Jelmer Vernooij
2008-01-13 04:23:09 +01:00
parent c264fb4bde
commit 2c90e6fc7a

View File

@ -36,6 +36,8 @@ AC_DEFUN([TRY_LINK_PYTHON],
fi
])
dnl assume no working python
working_python=no
if test -z "$PYTHON_VERSION"; then
AC_PATH_PROGS([PYTHON_CONFIG], [python2.6-config python2.5-config python2.4-config python-config])
@ -44,7 +46,6 @@ else
fi
if test -z "$PYTHON_CONFIG"; then
working_python=no
AC_MSG_WARN([No python-config found])
else
TRY_LINK_PYTHON([`$PYTHON_CONFIG --ldflags`], [`$PYTHON_CONFIG --includes`])