* scripts/Dpkg/Changelog.pm (parse_changelog): Fallback
into /usr/lib/dpkg/parsechangelog to find a changelog parser
in case $dpkglibdir points to another directory (for example
when DPKG_DATADIR is manually set).
+2008-02-20 Raphael Hertzog <hertzog@debian.org>
+
+ * scripts/Dpkg/Changelog.pm (parse_changelog): Fallback
+ into /usr/lib/dpkg/parsechangelog to find changelog parser
+ in case $dpkglibdir points to another directory (for example
+ when DPKG_DATADIR is manually set).
+
2008-02-19 Frank Lichtenheld <djpig@debian.org>
* m4/libs.m4 (DPKG_LIB_CURSES): Use libncursesw if
sub parse_changelog {
my (%options) = @_;
my @parserpath = ("/usr/local/lib/dpkg/parsechangelog",
- "$dpkglibdir/parsechangelog");
+ "$dpkglibdir/parsechangelog",
+ "/usr/lib/dpkg/parsechangelog");
my $format = "debian";
my $changelogfile = "debian/changelog";
my $force = 0;