summaryrefslogtreecommitdiff
path: root/dh_installchangelogs
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-05-28 01:20:49 -0400
committerJoey Hess <joey@kitenet.net>2010-05-28 01:20:49 -0400
commit9b9c3cb3c32040d00a43b328353ec509151965d4 (patch)
treece33ca6f488b67014a0c1c7911fff83142dd2799 /dh_installchangelogs
parent73a2c4fd2c354c4316ece8f37106de57542a5e3c (diff)
dh_installchangelogs: Support packages placing their changelog in a file with a name like HISTORY. Closes: #582749
Diffstat (limited to 'dh_installchangelogs')
-rwxr-xr-xdh_installchangelogs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installchangelogs b/dh_installchangelogs
index 4bf97dcc..87ac11bd 100755
--- a/dh_installchangelogs
+++ b/dh_installchangelogs
@@ -85,7 +85,7 @@ my $changelog_name="changelog.Debian";
if (! defined $upstream) {
if (! isnative($dh{MAINPACKAGE}) && !compat(6)) {
my @files=sort glob("*");
- foreach my $name (qw{changelog changes changelog.txt changes.txt}) {
+ foreach my $name (qw{changelog changes changelog.txt changes.txt history history.txt}) {
my @matches=grep {
lc $_ eq $name && -s $_ && ! excludefile($_)
} @files;