Source: python-gssapi
Version: 1.2.0-1
Severity: minor
Tags: patch
Hi,
The find(1) call in override_dh_auto_clean will not delete all
matched files as -delete has high precedence; it will "bind" to
the -name \*.egg part only.
Patch attached.
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
diff --git a/debian/rules b/debian/rules
index c254208..e673a0c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -17,4 +17,4 @@ override_dh_auto_test:
python -c 'import should_be' && python setup.py nosetests || true
override_dh_auto_clean:
- find . -name \*.pyc -or -name \*.c -or -name \*.so -or -name \*.egg
-delete
+ find . \( -name \*.pyc -or -name \*.c -or -name \*.so -or -name \*.egg
\) -delete