]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_auto_clean
dh: Override LC_ALL, not LANG. Closes: #517617
[debhelper.git] / dh_auto_clean
index 4468fef9ca3d25ce9c8dc45a1644c3c3a3b8b316..6c97b106a491a3ed62f5969b56dbc7d7944a3005 100755 (executable)
@@ -31,7 +31,7 @@ dh_auto_clean at all, and just run make clean manually.
 
 =item B<--> I<params>
 
-Pass "params" to the program that is run. These can be used to suppliment
+Pass "params" to the program that is run. These can be used to supplement
 or override the any standard parameters that dh_auto_clean passes.
 
 =back
@@ -55,6 +55,9 @@ if (-e "Makefile" || -e "makefile" || -e "GNUmakefile") {
 }
 elsif (-e "setup.py") {
        doit("python", "setup.py", "clean", "-a", @{$dh{U_PARAMS}});
+       # The setup.py might import files, leading to python creating pyc
+       # files.
+       doit('find', '.', '-name', '*.pyc', '-exec', 'rm', '{}', ';');
 }
 elsif (-e "Build.PL" && -e "Build") {
        doit("perl", "Build", "--allow_mb_mismatch", 1, "distclean", @{$dh{U_PARAMS}});