summaryrefslogtreecommitdiff
path: root/dh_builddeb
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2017-07-27 05:44:20 +0000
committerNiels Thykier <niels@thykier.net>2017-07-27 05:44:20 +0000
commitddee9c80acffef3da31f620607439a17cb99792b (patch)
tree1fc095b894abcc8d59b3adff88fc4b5481adb283 /dh_builddeb
parent8d4eae87f8cd5cacd8da8647f921cb9b21fdf9e9 (diff)
dh_builddeb: Use default comp. settings for dbgsyms
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_builddeb')
-rwxr-xr-xdh_builddeb10
1 files changed, 4 insertions, 6 deletions
diff --git a/dh_builddeb b/dh_builddeb
index 90dd4725..d0916825 100755
--- a/dh_builddeb
+++ b/dh_builddeb
@@ -131,12 +131,10 @@ on_items_in_parallel(\@items, sub {
if ($dbgsym) {
my $dbgsym_tmpdir = "debian/.debhelper/${package}/dbgsym-root";
- # XXX: Should we blindly overrule the maintainer here? It
- # is not apparent that their explicit -z was intended for
- # the dbgsym package.
- my @args = default_compressor_args(["-z1", "-Zxz", "-Sextreme"],
- @{$dh{U_PARAMS}});
- doit("dpkg-deb", @args,
+ # XXX: Should we blindly overrule the maintainer's choice
+ # of compressor arguments here? It is not apparent that
+ # their explicit -z was intended for the dbgsym package.
+ doit("dpkg-deb", @{$dh{U_PARAMS}}
"--build", $dbgsym_tmpdir, $dh{DESTDIR});
next;
}