diff options
author | Kali Kaneko <kali@leap.se> | 2014-04-09 16:06:41 -0500 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2014-04-09 16:06:41 -0500 |
commit | 16dbfbc3f14296587ebef9a65e69d7bf1b9dcb0e (patch) | |
tree | 019c3b830a4e099ca7d55510d29b3b23c829c6f5 /debian | |
parent | 062e12214b0a1954ede04f45728183b5aa37568e (diff) |
remove pycs
lintian complains about pycs included in source because some files are
dynamically changed in the process and therefore the byte-code is not
cleaned.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index c66ed435..75310561 100755 --- a/debian/rules +++ b/debian/rules @@ -22,3 +22,7 @@ override_dh_install: cp common/src/leap/__init__.py debian/soledad-common/usr/local/lib/python$$pv/*-packages/leap/; \ cp common/src/leap/__init__.py debian/soledad-common/usr/local/lib/python$$pv/*-packages/leap/soledad/; \ done + +override_dh_auto_clean: + dh_auto_clean + find . -name "*.pyc" -exec rm -rf {} \; |