Your message dated Mon, 7 Jan 2008 23:06:29 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#378614: dpkg: cleanup-info uses obsolete /usr/info
directory
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: dpkg
Version: 1.13.22
Severity: normal
Tags: patch
Hi,
cleanup-info uses the obsolete directory /usr/info as its $infodir,
rendering it non-functional on systems where that does not exist (as
on my system). Please apply the following patch to
scripts/cleanup-info.pl to fix this:
--- cleanup-info.pl~ 2006-06-21 06:46:12.000000000 +0200
+++ cleanup-info.pl 2006-07-17 20:58:41.000000000 +0200
@@ -56,7 +56,7 @@
"), $0;
}
-my $infodir = '/usr/info';
+my $infodir = '/usr/share/info';
my $unsafe = 0;
$0 =~ m|[^/]+$|;
my $name= $&;
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.6
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Versions of packages dpkg depends on:
ii coreutils 5.96-5 The GNU core utilities
ii libc6 2.3.6-15 GNU C Library: Shared libraries
dpkg recommends no packages.
-- no debconf information
--- End Message ---
--- Begin Message ---
Hi,
On Mon, 2006-07-17 at 21:11:56 +0200, Sven Joachim wrote:
> Package: dpkg
> Version: 1.13.22
> Severity: normal
> Tags: patch
>
> cleanup-info uses the obsolete directory /usr/info as its $infodir,
> rendering it non-functional on systems where that does not exist (as
> on my system). Please apply the following patch to
> scripts/cleanup-info.pl to fix this:
>
> --- cleanup-info.pl~ 2006-06-21 06:46:12.000000000 +0200
> +++ cleanup-info.pl 2006-07-17 20:58:41.000000000 +0200
> @@ -56,7 +56,7 @@
> "), $0;
> }
>
> -my $infodir = '/usr/info';
> +my $infodir = '/usr/share/info';
> my $unsafe = 0;
> $0 =~ m|[^/]+$|;
> my $name= $&;
The purpose of this program was to fix dir files produced by ancient
and bogus install-info versions, which at the time was handling that
file under /usr/info. Also given that the switch to the GNU install-info
should be imminent, and that we'll most probably get rid of this program
on that transition, I don't see the point in making it handle the old
and new dirs. I'd say we just let it die. Thus closing this bug report.
Thanks for the patch anyway!
regards,
guillem
--- End Message ---