diff options
author | Joey Hess <joey@kitenet.net> | 2013-08-15 20:14:44 +0200 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-08-15 20:21:26 +0200 |
commit | 71d06996481c6187b016c3b14b7e9faaf8adc432 (patch) | |
tree | cbdb8882f31a7348e2b039c2bb3ca3aae171ca76 /dh_clean | |
parent | feb76f76e099df14be6ca5c33baf91d0a4f307a9 (diff) | |
download | debhelper-71d06996481c6187b016c3b14b7e9faaf8adc432.tar.gz |
dh_install, dh_installdocs, dh_clean: Fix uses of find -exec which cause it to ignore exit status of the commands run.
Diffstat (limited to 'dh_clean')
-rwxr-xr-x | dh_clean | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -128,8 +128,8 @@ if (! $dh{D_FLAG}) { -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \\ -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \\ -o -name TAGS -o \\( -path '*/.deps/*' -a -name '*.P' \\) \\ - \\) -exec rm -f {} \\; \\) -o \\ - \\( -type d -a -name autom4te.cache -prune -exec rm -rf {} \\; \\) \\)"); + \\) -exec rm -f {} + \\) -o \\ + \\( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \\) \\)"); } doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1) && |