diff options
author | Joey Hess <joey@kitenet.net> | 2011-08-29 20:26:23 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-08-29 20:26:23 -0400 |
commit | ad8c31967d4f5760abbb268b1ed794f959447e0f (patch) | |
tree | 1642e881598b01ebb967ed3e2fffa00dafca1062 /dh | |
parent | 1807e38fba8fb4e0328df543fe35414f75b1f0c2 (diff) | |
download | debhelper-ad8c31967d4f5760abbb268b1ed794f959447e0f.tar.gz |
adh: Don't bother running dh_shlibdebs, dh_makeshelibs, or dh_strip for the binary target when all packages being acted on are indep.
This is a not particularly interesting optimisation, but it will allow my
next commit..
Diffstat (limited to 'dh')
-rwxr-xr-x | dh | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -422,6 +422,9 @@ my @ba=qw{ dh_makeshlibs dh_shlibdeps }; +if (! getpackages("arch")) { + @ba=(); +} my @b=qw{ dh_installdeb dh_gencontrol |