summaryrefslogtreecommitdiff
path: root/dh_strip
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2015-10-04 20:51:50 +0200
committerNiels Thykier <niels@thykier.net>2015-10-04 20:51:50 +0200
commite6bb143b8ff611dc29658a1c3e6a1ce413d75e83 (patch)
treee267ac4a1181a7238ff16489a27bc45cbdb5569a /dh_strip
parent5f94316ef7783fac26de95ff3ec79df03cb070ee (diff)
downloaddebhelper-e6bb143b8ff611dc29658a1c3e6a1ce413d75e83.tar.gz
dh_strip: Sort build-ids
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_strip')
-rwxr-xr-xdh_strip2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_strip b/dh_strip
index c6577ddd..c8fab7fc 100755
--- a/dh_strip
+++ b/dh_strip
@@ -373,7 +373,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
$path = "${dir}/ddeb-build-ids";
install_dir($dir) if ! -d $dir;
open(my $fd, '>>', $path) or error("open $path failed: $!");
- print {$fd} join(q{ }, @build_ids) . "\n";
+ print {$fd} join(q{ }, sort(@build_ids)) . "\n";
close($fd) or error("close $path failed: $!");
}
}