]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Adds find . -type f -name "*.pyc" -delete in dh_clean.
authorThomas Goirand <thomas@goirand.fr>
Wed, 23 Oct 2013 18:18:38 +0000 (18:18 +0000)
committerThomas Goirand <thomas@goirand.fr>
Wed, 23 Oct 2013 18:18:38 +0000 (18:18 +0000)
debian/changelog
debian/rules

index 9cd92830753ba7a01addd83df01d7262a5159c0b..cbee9c420a496ea21cb71499455d6c5f8d165c84 100644 (file)
@@ -2,6 +2,7 @@ neutron (2013.2-4) UNRELEASED; urgency=low
 
   * neutron-*-agent packages are now breaking + replace only old versions of
     Quantum packages: those who were not transition packages (Closes: #727235).
+  * Adds find . -type f -name "*.pyc" -delete in dh_clean.
 
  -- Thomas Goirand <zigo@debian.org>  Thu, 24 Oct 2013 02:09:41 +0800
 
index e23c6b676d73fdb0bdd8476a2eea11f43a4997d6..6bf3f2df15e0e97df6a5e607478c3aa31180657c 100755 (executable)
@@ -55,6 +55,10 @@ override_dh_auto_clean:
                debian/neutron-metadata-agent.config \
                debian/neutron-metadata-agent.postinst
 
+override_dh_clean:
+       dh_clean
+       find . -type f -name "*.pyc" -delete
+
 ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
 override_dh_auto_test:
        ./run_tests.sh -N -P || true