The branch, master has been updated
via e43de85 wafsamba: Allow newer or the same python module versions to
be installed, not older.
from 58206fb tevent: Remove reference to nonexistant configure.developer
from autogen.sh.
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit e43de85b97dfa584ba9cfb7b18ed302fddb767ae
Author: Jelmer Vernooij <[email protected]>
Date: Tue Dec 21 23:52:15 2010 +0100
wafsamba: Allow newer or the same python module versions to be installed,
not older.
Autobuild-User: Jelmer Vernooij <[email protected]>
Autobuild-Date: Wed Dec 22 00:42:23 CET 2010 on sn-devel-104
-----------------------------------------------------------------------
Summary of changes:
buildtools/wafsamba/samba_bundled.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/buildtools/wafsamba/samba_bundled.py
b/buildtools/wafsamba/samba_bundled.py
index 324721f..9e02ca4 100644
--- a/buildtools/wafsamba/samba_bundled.py
+++ b/buildtools/wafsamba/samba_bundled.py
@@ -172,7 +172,7 @@ def CHECK_BUNDLED_SYSTEM_PYTHON(conf, libname, modulename,
minversion='0.0.0'):
except AttributeError:
found = False
else:
- found = tuple(minversion.split(".")) >= tuple(version.split("."))
+ found = tuple(version.split(".")) >= tuple(minversion.split("."))
if not found and not conf.LIB_MAY_BE_BUNDLED(libname):
Logs.error('ERROR: Python module %s of version %s not found, and
bundling disabled' % (libname, minversion))
sys.exit(1)
--
Samba Shared Repository