summaryrefslogtreecommitdiff
path: root/dh_suidregister
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-02-09 17:38:42 -0400
committerJoey Hess <joey@kitenet.net>2013-02-09 17:38:42 -0400
commite9fe3cee83cdcc4df978fb1761009dfc124add92 (patch)
treef2d4ecd5770787bfff5290dbabc8d9a755c35b65 /dh_suidregister
parent7765a25a48492d2d971c836c8e609422c540d721 (diff)
Avoid find -perm +mode breakage caused by findutils 4.5.11, by instead using -perm /mode. Closes: #700200
Diffstat (limited to 'dh_suidregister')
-rwxr-xr-xdh_suidregister2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_suidregister b/dh_suidregister
index 7f6cd40f..893eb3dd 100755
--- a/dh_suidregister
+++ b/dh_suidregister
@@ -53,7 +53,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
if (! @files && ! $suid) {
# No files specified (and no empty debian/suid file), so
# guess what files to process.
- @files=split(/\n/,`find $tmp -type f -perm +6000`);
+ @files=split(/\n/,`find $tmp -type f -perm /6000`);
# Strip the debian working directory off of the filenames.
$tostrip="$tmp/";