diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2010-03-22 09:03:06 +0100 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2010-03-22 09:03:06 +0100 |
commit | 1ab4f9bfcd47c88dcacd19ee19f26028c86274ed (patch) | |
tree | 6a64c17c0b939a5a649e893ecc843e1dea29ada2 /setup.py | |
parent | a6ed23a26434d0aadf65bb7128541aed1ccfae29 (diff) | |
download | logilab-common-1ab4f9bfcd47c88dcacd19ee19f26028c86274ed.tar.gz |
2.5.1 support --install-laout
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -177,7 +177,7 @@ def install(**kwargs): try: if not USE_SETUPTOOLS: from distutils import __version__ as distutils_version - if tuple([int(x) for x in distutils_version.split('.')]) <= (2, 5, 1): + if tuple([int(x) for x in distutils_version.split('.')]) < (2, 5, 1): sys.argv.remove('--install-layout=deb') print "W: remove '--install-layout=deb' option" except: |