You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This also removes the now-obsolete upstart script and updates the "debhelper compat level" to 12 (which necessitates adding "override_dh_dwz" -- safe to remove once we can update to debhelper-compat 13+).
(See also https://lists.debian.org/debian-devel-announce/2020/02/msg00000.html)
Signed-off-by: Tianon Gravi <admwiggin@gmail.com>
# *technically* this "5:21~" should be something more specific like "5:22.06.1-1~" (the first released version to introduce this "rm_conffile" line), but as long as it's strictly *newer* than the last version to ship the conffile and stricly *older* than the first version with the rm_conffile line, it should work fine (so we're using the will-never-exist major version of "21" as our in-between release for the 20.xx to 22.xx)
2
+
rm_conffile /etc/init/docker.conf 5:21~
3
+
# this should stick around in the package until there are no more users who will ever upgrade from "5:20.xx" to something newer (it's reasonably harmless for this to stay indefinitely)
Copy file name to clipboardExpand all lines: deb/common/rules
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -62,15 +62,19 @@ override_dh_auto_test:
62
62
override_dh_strip:
63
63
# Go has lots of problems with stripping, so just don't
64
64
65
+
# http://manpages.debian.org/dh_dwz
66
+
override_dh_dwz:
67
+
# dh_dwz in debhelper versions less than 13 has issues with files that are missing debug symbols (once we update to debhelper-compat 13+ this can be removed)
0 commit comments