Your message dated Sat, 29 Oct 2005 00:02:07 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#335741: fixed in help2man 1.36.2
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)
--------------------------------------
Received: (at submit) by bugs.debian.org; 25 Oct 2005 17:52:27 +0000
>From [EMAIL PROTECTED] Tue Oct 25 10:52:27 2005
Return-path: <[EMAIL PROTECTED]>
Received: from kiwi.cs.ucla.edu [131.179.128.19]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1EUSyJ-0005G1-00; Tue, 25 Oct 2005 10:52:27 -0700
Received: from penguin.cs.ucla.edu (Penguin.CS.UCLA.EDU [131.179.64.200])
by kiwi.cs.ucla.edu (8.11.7p1+Sun/8.11.7/UCLACS-5.2) with ESMTP id
j9PHpu400107
for <[EMAIL PROTECTED]>; Tue, 25 Oct 2005 10:51:56 -0700 (PDT)
Received: from eggert by penguin.cs.ucla.edu with local (Exim 4.50)
id 1EUSxo-0007aS-Dz
for [EMAIL PROTECTED]; Tue, 25 Oct 2005 10:51:56 -0700
To: [EMAIL PROTECTED]
Subject: help2man 'make install' fails when building from another dir
Message-Id: <[EMAIL PROTECTED]>
From: Paul Eggert <[EMAIL PROTECTED]>
Date: Tue, 25 Oct 2005 10:51:56 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
Package: help2man
Version: 1.36.1
Here are the failure symptoms (I'm running Debian stable x86):
$ tar xzf ../help2man-1.36.1.tar.gz
$ mkdir obj-Linux-i686
$ cd obj-Linux-i686
$ ../help2man-1.36.1/configure \
--prefix=/home/eggert/opt/Linux-i686/help2man-1.36.1 \
--disable-nls
> > checking for perl... perl
checking for a BSD-compatible install...
/home/eggert/opt/Linux-i686/merged/bin/install -c
checking for makeinfo... /usr/bin/makeinfo
checking for install-info... /usr/sbin/install-info
configure: creating ./config.status
config.status: creating Makefile
$ make
perl ../help2man-1.36.1/help2man.PL
Extracting help2man (with variable substitutions)
$ make DESTDIR=../stage install
../help2man-1.36.1/mkinstalldirs
../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/bin
mkdir ../stage
mkdir ../stage/home
mkdir ../stage/home/eggert
mkdir ../stage/home/eggert/opt
mkdir ../stage/home/eggert/opt/Linux-i686
mkdir ../stage/home/eggert/opt/Linux-i686/help2man-1.36.1
mkdir ../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/bin
../help2man-1.36.1/mkinstalldirs
../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/lib
mkdir ../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/lib
../help2man-1.36.1/mkinstalldirs
../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/man/man1
mkdir ../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/man
mkdir ../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/man/man1
../help2man-1.36.1/mkinstalldirs
../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/info
mkdir ../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/info
/home/eggert/opt/Linux-i686/merged/bin/install -c help2man
../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/bin
/home/eggert/opt/Linux-i686/merged/bin/install -c -m 644 help2man.1
../stage/home/eggert/opt/Linux-i686/help2man-1.36.1/man/man1
/home/eggert/opt/Linux-i686/merged/bin/install: cannot stat `help2man.1': No
such file or directory
make: *** [install_base] Error 1
Here is a patch:
* Change Makefile.in to support builds from other directories, as per
GNU coding standards (thanks to Paul Eggert).
--- Makefile.in 2005/10/16 16:15:54 1.36.1.0
+++ Makefile.in 2005/10/25 17:37:13 1.36.1.1
@@ -32,7 +32,7 @@ MKINSTALLDIRS = $(srcdir)/mkinstalldirs
target = help2man
preload = hacklocaledir
-all: $(target) man info @extra_make_all@
+all: $(target) man info @extra_make_all@
install: all install_base @extra_make_install@
install_base:
@@ -42,11 +42,13 @@ install_base:
$(MKINSTALLDIRS) $(DESTDIR)$(infodir)
$(INSTALL_PROGRAM) $(target) $(DESTDIR)$(bindir)
- $(INSTALL_DATA) $(target).1 $(DESTDIR)$(mandir)/man1
- $(INSTALL_DATA) $(target).info $(DESTDIR)$(infodir)/$(target).info
+ $(INSTALL_DATA) $(srcdir)/$(target).1 $(DESTDIR)$(mandir)/man1
+ $(INSTALL_DATA) $(srcdir)/$(target).info \
+ $(DESTDIR)$(infodir)/$(target).info
if test -f $(DESTDIR)$(infodir)/dir; \
then \
- $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(target).info; \
+ $(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) \
+ $(srcdir)/$(target).info; \
fi
install_preload: preload
@@ -57,9 +59,9 @@ install_l10n: man_l10n
do \
$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/$$lang/man1; \
$(MKINSTALLDIRS) $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
- $(INSTALL_DATA) $(target).$$lang.1 \
+ $(INSTALL_DATA) $(srcdir)/$(target).$$lang.1 \
$(DESTDIR)$(mandir)/$$lang/man1/$(target).1; \
- $(INSTALL_DATA) po/$$lang.gmo \
+ $(INSTALL_DATA) $(srcdir)/po/$$lang.gmo \
$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(target).mo; \
done
@@ -81,15 +83,16 @@ clean:
-rm -f $(target) $(preload).so
mostlyclean: clean
- rm -f $(target).dvi $(target).aux $(target).cp $(target).cps \
+ cd $(srcdir) && \
+ rm -f $(target).dvi $(target).aux $(target).cp $(target).cps \
$(target).fn $(target).ky $(target).log $(target).pg \
- $(target).toc $(target).tp $(target).vr $(srcdir)/po/*.po~
+ $(target).toc $(target).tp $(target).vr po/*.po~
distclean: mostlyclean
-rm -rf config.cache config.log config.status Makefile autom4te.cache
realclean: distclean
- -rm -f $(target).info $(target).1 $(target).*.1 po/*.gmo
+ cd $(srcdir) && rm -f $(target).info $(target).1 $(target).*.1 po/*.gmo
maintainer-clean: realclean
rm -f configure
---------------------------------------
Received: (at 335741-close) by bugs.debian.org; 29 Oct 2005 07:08:14 +0000
>From [EMAIL PROTECTED] Sat Oct 29 00:08:14 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1EVkj9-0004d5-00; Sat, 29 Oct 2005 00:02:07 -0700
From: Brendan O'Dea <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#335741: fixed in help2man 1.36.2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 29 Oct 2005 00:02:07 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
Source: help2man
Source-Version: 1.36.2
We believe that the bug you reported is fixed in the latest version of
help2man, which is due to be installed in the Debian FTP archive:
help2man_1.36.2.dsc
to pool/main/h/help2man/help2man_1.36.2.dsc
help2man_1.36.2.tar.gz
to pool/main/h/help2man/help2man_1.36.2.tar.gz
help2man_1.36.2_powerpc.deb
to pool/main/h/help2man/help2man_1.36.2_powerpc.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Brendan O'Dea <[EMAIL PROTECTED]> (supplier of updated help2man package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sat, 29 Oct 2005 16:46:16 +1000
Source: help2man
Binary: help2man
Architecture: source powerpc
Version: 1.36.2
Distribution: unstable
Urgency: low
Maintainer: Brendan O'Dea <[EMAIL PROTECTED]>
Changed-By: Brendan O'Dea <[EMAIL PROTECTED]>
Description:
help2man - Automatic manpage generator
Closes: 335741
Changes:
help2man (1.36.2) unstable; urgency=low
.
* Updated po translation from Jakub Bogusz.
* Makefile.in: $(srcdir) fix from Paul Eggert (closes: #335741).
Files:
0bc7cc8ce03a6017fd845aa3779d9cfd 557 devel optional help2man_1.36.2.dsc
195785b0c84c28d00d3b95e6c73744cf 80479 devel optional help2man_1.36.2.tar.gz
566c14db422a2bd28c98a2cb06df9b3f 40260 devel optional
help2man_1.36.2_powerpc.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
iD8DBQFDYxz68NyOALKMWZURAlZsAJ9C9yDjcQnpwjMQ/Iio3LD90/SRBwCfRuMz
QA5gBM1TgcRhaFK2kKhAMdo=
=7ydj
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]