]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
UBUNTU: d/s/m/insert-ubuntu-changes: <stop at> should not be included in the changelog
authorMarcelo Henrique Cerri <marcelo.cerri@canonical.com>
Wed, 11 Oct 2017 13:32:39 +0000 (10:32 -0300)
committerSeth Forshee <seth.forshee@canonical.com>
Thu, 19 Oct 2017 14:49:22 +0000 (09:49 -0500)
Ignore: yes

Commit "UBUNTU: d/s/m/insert-ubuntu-changes: use full version numbers"
wrongly change the behaviour of the "<stop at>" parameter.

Change the script to not include the <stop at> version into the target
changelog.

Signed-off-by: Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
Acked-by: Kamal Mostafa <kamal@canonical.com>
Acked-by: Stefan Bader <stefan.bader@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
debian/scripts/misc/insert-ubuntu-changes

index 7af9c20c121593a7f4d48df5af30eaa1d24ab498..145c81c5dbd334f58eb604fba96082e962b830a4 100755 (executable)
@@ -37,7 +37,7 @@ open(CHG, "<debian.master/changelog") ||
        die "$0: debian/changelog: open failed - $!\n";
 while (<CHG>) {
        if (/^\S+\s+\((.*)\)/) {
-               if (version_cmp($1, $end) <= -1) {
+               if (version_cmp($1, $end) <= 0) {
                        last;
                }
                if ($1 eq $start) {