]> git.donarmstrong.com Git - debhelper.git/commitdiff
* The order of dependencies generated by debhelper has been completly random
authorJoey Hess <joey@kodama.kitenet.net>
Tue, 4 Mar 2008 20:01:04 +0000 (15:01 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Tue, 4 Mar 2008 20:01:04 +0000 (15:01 -0500)
  (hash key order), so sort it. Closes: #468959

Debian/Debhelper/Dh_Lib.pm
debian/changelog

index bd5e3ae70fa19ebda4ace8bcfc5153b542bfbe5d..c43b128610ade8993ec7b3b304039fc187417483 100644 (file)
@@ -492,7 +492,7 @@ sub addsubstvar {
                else {
                        delete $items{$str};
                }
-               $line=join(", ", keys %items);
+               $line=join(", ", sort keys %items);
        }
        elsif (! $remove) {
                $line=$str;
index 6db4310a499f0d6d2d3f4e86a1a268487159ee59..ebdca800a00e9a491182e6f011182c4aca955759 100644 (file)
@@ -3,6 +3,8 @@ debhelper (6.0.6) UNRELEASED; urgency=low
   * dh_compress: Pass -n to gzip to yeild more reproducible file contents.
     The time stamp information need not be contained in the .gz file since the
     time stamp is preserved when compressing and decompressing. Closes: #467100
+  * The order of dependencies generated by debhelper has been completly random
+    (hash key order), so sort it. Closes: #468959
 
  -- Joey Hess <joeyh@debian.org>  Wed, 27 Feb 2008 16:30:16 -0500