Commit f9414870 authored by Marcelo Henrique Cerri's avatar Marcelo Henrique Cerri Committed by Kleber Sacilotto de Souza

UBUNTU: d/s/m/insert-ubuntu-changes: <stop at> should not be included in the changelog

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: default avatarMarcelo Henrique Cerri <marcelo.cerri@canonical.com>
Acked-by: default avatarKamal Mostafa <kamal@canonical.com>
Acked-by: default avatarStefan Bader <stefan.bader@canonical.com>
Acked-by: default avatarThadeu Lima de Souza Cascardo <cascardo@canonical.com>
Signed-off-by: default avatarKleber Sacilotto de Souza <kleber.souza@canonical.com>
parent bbf49e5d
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment