From d449b9393595cae5f51bb4c04266f7b99ccd04ae Mon Sep 17 00:00:00 2001 From: Loic Baron Date: Wed, 26 Feb 2014 11:14:08 +0100 Subject: [PATCH] Clean by Remove /usr/share/unfold/ each time you run python setup.py install --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) 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' ], -- 2.43.0