From: Loic Baron Date: Wed, 26 Feb 2014 10:14:08 +0000 (+0100) Subject: Clean by Remove /usr/share/unfold/ each time you run python setup.py install X-Git-Tag: myslice-1.1~287^2~8 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=d449b9393595cae5f51bb4c04266f7b99ccd04ae;p=myslice.git Clean by Remove /usr/share/unfold/ each time you run python setup.py install --- diff --git a/setup.py b/setup.py index f3531def..d27df2b1 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,7 @@ # INRIA (c) 2013 import os.path +import shutil from glob import glob from distutils.core import setup @@ -13,6 +14,9 @@ from distutils.core import setup packages= [ os.path.dirname(init) for init in (glob("*/__init__.py")+glob("*/*/__init__.py")) ] print packages +# Avoid troubles : clean /usr/share/unfold/ +shutil.rmtree('/usr/share/unfold/') + setup(packages = packages, # xxx somehow this does not seem to show up in debian packaging scripts = [ 'apache/unfold-init-ssl.sh' ],