diff options
author | joey <joey> | 2003-08-19 23:52:24 +0000 |
---|---|---|
committer | joey <joey> | 2003-08-19 23:52:24 +0000 |
commit | d1f803bc312f356ac639c06958f5009acf4114d2 (patch) | |
tree | 3ee28d38d3869dc001abc6a18599a5cdb4392725 /dh_clean | |
parent | 1f56418d00a8f406f53b06f3f0b1566e56c1feca (diff) | |
download | debhelper-d1f803bc312f356ac639c06958f5009acf4114d2.tar.gz |
r1592: * dh_link: rm -f every time, ln -f is not good enough if the link targetversion_4.1.66
is an existing directory (aka, ln sucks). Closes: #206245
* dh_clean: honor -X for debian/tmp removal. Closes: #199952 more or less.
Diffstat (limited to 'dh_clean')
-rwxr-xr-x | dh_clean | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -106,7 +106,8 @@ if (! $dh{D_FLAG}) { unless excludefile("autom4te.cache"); } -doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1); +doit('rm', '-rf', 'debian/tmp') if -x 'debian/tmp' && ! compat(1) && + ! excludefile("debian/tmp"); =head1 SEE ALSO |