diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-05 08:23:28 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-05 08:23:28 -0400 |
commit | 22644829621e3613ac87a51e1ccac021a096dbc6 (patch) | |
tree | fd12e158061862d50804930e63dedeb7484304d0 | |
parent | 60b19d214d43e11e090f939b330d897f297369c5 (diff) | |
download | debhelper-22644829621e3613ac87a51e1ccac021a096dbc6.tar.gz |
Load python-support sequence file first, to allow ones loaded later to disable it.
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | dh | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 00d33565..e199eb39 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (7.0.14) UNRELEASED; urgency=low + + * Load python-support sequence file first, to allow ones loaded later to + disable it. + + -- Joey Hess <joeyh@debian.org> Sat, 05 Jul 2008 08:22:43 -0400 + debhelper (7.0.13) unstable; urgency=low * dh_auto_install: Rather than looking at the number of binary packages @@ -293,7 +293,7 @@ $sequences{binary} = [@{$sequences{install}}, qw{ $sequences{'binary-arch'} = [@{$sequences{binary}}]; # --with python-support is enabled by default, at least for now -push @{$dh{WITH}}, "python-support"; +unshift @{$dh{WITH}}, "python-support"; # sequence addon interface sub _insert { |