diff options
author | hubertf <hubertf@pkgsrc.org> | 2000-10-14 16:11:35 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2000-10-14 16:11:35 +0000 |
commit | 93c490df1b34f46ccfddfd386c66caa028cd3d80 (patch) | |
tree | cd499744ed56953d0c90523a689ac65f30c889e8 /devel | |
parent | df444176c06149a68094cbccd6931c2250207e93 (diff) | |
download | pkgsrc-93c490df1b34f46ccfddfd386c66caa028cd3d80.tar.gz |
It seems the info-files distributed with libtool 1.3.5 are broken.
To test, type "info libtool|" and hold down space. See it stop with a
``Cannot find the node "(/usr/pkg/info/libtool.info)Linking executables"''
error. Simply making sure the info-files get re-done works here.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libtool/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/devel/libtool/Makefile b/devel/libtool/Makefile index 9bfd62891ab..09a4492cd5e 100644 --- a/devel/libtool/Makefile +++ b/devel/libtool/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2000/10/12 19:07:06 skrll Exp $ +# $NetBSD: Makefile,v 1.22 2000/10/14 16:11:35 hubertf Exp $ # DISTNAME= libtool-1.3.5 @@ -12,6 +12,13 @@ HOMEPAGE= http://www.gnu.org/software/libtool/libtool.html CONFLICTS= glibtool-* GNU_CONFIGURE= yes +# It seems the info-files distributed with libtool 1.3.5 are broken. +# To test, type "info libtool|" and hold down space. See it stop with a +# ``Cannot find the node "(/usr/pkg/info/libtool.info)Linking executables"'' +# error. Simply making sure the info-files get re-done works here. +post-extract: + rm -f ${WRKSRC}/doc/libtool.info* + test check: build cd ${WRKSRC} && ${MAKE} check |