diff options
| author | 2010-08-20 10:42:30 +0200 | |
|---|---|---|
| committer | 2010-08-20 10:42:30 +0200 | |
| commit | 1abb0a0af82f7433197ba4183aeb08b60d70453a (patch) | |
| tree | 2037c1012eade0cc9c5811c0566a97e9b261ad6d | |
| parent | f14171e5219ea8c2808154a848f441810d5072a2 (diff) | |
| download | libimobiledevice-1abb0a0af82f7433197ba4183aeb08b60d70453a.tar.gz libimobiledevice-1abb0a0af82f7433197ba4183aeb08b60d70453a.tar.bz2 | |
m4: Fix comparison bug in python macros
Reports say it fixes FreeBSD detection.
| -rw-r--r-- | m4/ac_python_devel.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/ac_python_devel.m4 b/m4/ac_python_devel.m4 index 7cec10f..99ff7d0 100644 --- a/m4/ac_python_devel.m4 +++ b/m4/ac_python_devel.m4 | |||
| @@ -172,7 +172,7 @@ $ac_distutils_result]) | |||
| 172 | py_version=`$PYTHON -c "from distutils.sysconfig import *; \ | 172 | py_version=`$PYTHON -c "from distutils.sysconfig import *; \ |
| 173 | from string import join; \ | 173 | from string import join; \ |
| 174 | print join(get_config_vars('VERSION'))"` | 174 | print join(get_config_vars('VERSION'))"` |
| 175 | if test "$py_version" == "[None]"; then | 175 | if test "$py_version" = "[None]"; then |
| 176 | if test -n "$PYTHON_VERSION"; then | 176 | if test -n "$PYTHON_VERSION"; then |
| 177 | py_version=$PYTHON_VERSION | 177 | py_version=$PYTHON_VERSION |
| 178 | else | 178 | else |
