diff options
author | Niels Thykier <niels@thykier.net> | 2018-01-02 14:41:04 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2018-01-02 14:41:06 +0000 |
commit | eb1bdee3ff729551267578c2716afcebd88b4365 (patch) | |
tree | 7975d5b035444c7fd1557baeb1ac7fba01084ea1 /dh | |
parent | 486dc1195346ed6aa35dae7e3ef35b4c4d37b7ee (diff) | |
download | debhelper-eb1bdee3ff729551267578c2716afcebd88b4365.tar.gz |
dh: Ensure that $startpoint{$package} is defined
Thanks to James Cowgill for finding this bug.
Diffstat (limited to 'dh')
-rwxr-xr-x | dh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -731,6 +731,10 @@ if (compat(9)) { } } } +} else { + foreach my $package (@packages) { + $startpoint{$package} = 0; + } } # Figure out what point in the sequence to go to. |