diff options
author | Niels Thykier <niels@thykier.net> | 2015-10-04 20:51:50 +0200 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2015-10-04 20:51:50 +0200 |
commit | e6bb143b8ff611dc29658a1c3e6a1ce413d75e83 (patch) | |
tree | e267ac4a1181a7238ff16489a27bc45cbdb5569a /dh_strip | |
parent | 5f94316ef7783fac26de95ff3ec79df03cb070ee (diff) | |
download | debhelper-e6bb143b8ff611dc29658a1c3e6a1ce413d75e83.tar.gz |
dh_strip: Sort build-ids
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_strip')
-rwxr-xr-x | dh_strip | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: $!"); } } |