diff -r be44c58d3ed9 -r cb8ac7263f8a setup.py --- a/setup.py Tue Apr 20 15:55:50 2010 +0200 +++ b/setup.py Tue Apr 20 16:30:01 2010 +0200 @@ -165,10 +165,12 @@ def install(**kwargs): """setup entry point""" - if not USE_SETUPTOOLS and '--install-layout=deb' in sys.argv and \ - sys.versioninfo < (2, 5, 4): - sys.argv.remove('--install-layout=deb') - print "W: remove '--install-layout=deb' option" + if USE_SETUPTOOLS: + if '--force-manifest' in sys.argv: + sys.argv.remove('--force-manifest') + # install-layout option was introduced in 2.5.3-1~exp1 + elif sys.version_info < (2, 5, 4) and '--install-layout=deb' in sys.argv: + sys.argv.remove('--install-layout=deb') if subpackage_of: package = subpackage_of + '.' + modname kwargs['package_dir'] = {package : '.'}