1
2
3
4
5
6
7
8
9
10
11
12
13 | diff --git a/scripts/dep3changelog.pl b/scripts/dep3changelog.pl
index b7000cc..cebf6cb 100755
--- a/scripts/dep3changelog.pl
+++ b/scripts/dep3changelog.pl
@@ -129,7 +129,7 @@ for my $patch (@patches) {
next;
}
}
- last if (/^---/ || /^\s*$/);
+ last if (/^---/);
chomp;
# only if there was a shebang do we strip comment chars
s/^# // if ($dpatch);
|