[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#11422: automake 1.12 info doc installation problem
From: |
Bruno Haible |
Subject: |
bug#11422: automake 1.12 info doc installation problem |
Date: |
Tue, 08 May 2012 01:19:20 +0200 |
User-agent: |
KMail/4.7.4 (Linux/3.1.10-1.9-desktop; KDE/4.7.4; x86_64; ; ) |
Hi Stefano,
> I see this report from you on the bug-texinfo list:
>
> <http://lists.gnu.org/archive/html/bug-texinfo/2012-05/msg00000.html>
It is a different issue. (But I happened to stumble across both bugs
at the same time.) The issue on bug-texinfo is a problem with an INFOPATH
that contains at least two directories.
This issue here is about stale entries that refer to nonexistent nodes, when
installing a new Automake release using the same --prefix as an older one.
How to reproduce:
1. $ mkdir /tmp/inst
2. Install automake-1.11.2:
$ tar xvfz .../automake-1.11.2.tar.gz
$ (cd automake-1.11.2 && ./configure --prefix=/tmp/inst && make && make
install)
3. $ INFOPATH=/tmp/inst/share/info info automake
works
4. Install automake-1.12 with the same --prefix:
$ tar xvfz .../automake-1.12.tar.gz
$ (cd automake-1.12 && ./configure --prefix=/tmp/inst && make && make
install)
5. $ INFOPATH=/tmp/inst/share/info info automake
fails, it produces the manpage fallback.
Bruno