From: joeyh Date: Tue, 26 Dec 2006 21:28:05 +0000 (+0000) Subject: r1965: * dh_fixperms: Change a chmod +x to chmod a+x, to avoid the umask X-Git-Tag: 5.0.43~11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=985463e25f059565ef677985ebca02c7470efccf;p=debhelper.git r1965: * dh_fixperms: Change a chmod +x to chmod a+x, to avoid the umask influencing it. --- diff --git a/debian/changelog b/debian/changelog index 2a41611..2660c0e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,8 +5,10 @@ debhelper (5.0.43) UNRELEASED; urgency=low [ Joey Hess ] * Typo. Closes: #400571 + * dh_fixperms: Change a chmod +x to chmod a+x, to avoid the umask + influencing it. - -- Joey Hess Mon, 27 Nov 2006 12:17:29 -0500 + -- Joey Hess Tue, 26 Dec 2006 16:26:57 -0500 debhelper (5.0.42) unstable; urgency=low diff --git a/dh_fixperms b/dh_fixperms index 775ab55..a96b1e0 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -91,7 +91,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { for my $dir (qw{usr/bin bin usr/sbin sbin usr/games etc/init.d}) { if (-d "$tmp/$dir") { complex_doit("find $tmp/$dir -type f $find_options -print0 2>/dev/null", - "| xargs -0r chmod +x"); + "| xargs -0r chmod a+x"); } } }