diff options
author | skrll <skrll@pkgsrc.org> | 2002-01-10 16:22:37 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2002-01-10 16:22:37 +0000 |
commit | 7b1d6ebaf544f71952dd8fc5e5a1fb89ecc453f6 (patch) | |
tree | aff00a5eaa27a35b544f58063685085dde151b41 | |
parent | 5ad21dff64600b3b2ab0d50e7eeb74ebaacc8807 (diff) | |
download | pkgsrc-7b1d6ebaf544f71952dd8fc5e5a1fb89ecc453f6.tar.gz |
Actually add the patch that fixes lisp_LISP handling. This went unnoticed
for 4 months!
While I'm here change the maintainer to packages@netbsd.org
-rw-r--r-- | devel/automake/Makefile | 4 | ||||
-rw-r--r-- | devel/automake/distinfo | 3 | ||||
-rw-r--r-- | devel/automake/patches/patch-ac | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/devel/automake/Makefile b/devel/automake/Makefile index 693815dd782..f5f014c78bf 100644 --- a/devel/automake/Makefile +++ b/devel/automake/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2001/11/29 01:12:28 hubertf Exp $ +# $NetBSD: Makefile,v 1.26 2002/01/10 16:22:37 skrll Exp $ # FreeBSD Id: Makefile,v 1.5 1997/09/19 09:29:04 max Exp # @@ -8,7 +8,7 @@ PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=automake/} -MAINTAINER= fujimoto@oscar.elec.waseda.ac.jp +MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.gnu.org/software/automake/automake.html COMMENT= GNU Standards-compliant Makefile generator diff --git a/devel/automake/distinfo b/devel/automake/distinfo index 714ae04f60e..11042da3c2d 100644 --- a/devel/automake/distinfo +++ b/devel/automake/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2002/01/10 14:01:48 wiz Exp $ +$NetBSD: distinfo,v 1.6 2002/01/10 16:22:37 skrll Exp $ SHA1 (automake-1.4-p5.tar.gz) = f8368e47a7b8f879aaa0c828664b680efd9e455f Size (automake-1.4-p5.tar.gz) = 376992 bytes SHA1 (patch-aa) = 70ecb085bfe05f256bcaf4315e7a6e296b2749c0 SHA1 (patch-ab) = 0c4936c28c39efff28b3d388d5b6849a3f9b2eab +SHA1 (patch-ac) = bfd7f21810c5bf368afa168c4c39a858cc1fc3c3 diff --git a/devel/automake/patches/patch-ac b/devel/automake/patches/patch-ac new file mode 100644 index 00000000000..60f24d3c534 --- /dev/null +++ b/devel/automake/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2002/01/10 16:22:38 skrll Exp $ + +--- lisp.am.orig Sun Jul 15 17:22:09 2001 ++++ lisp.am +@@ -21,7 +21,7 @@ + $(mkinstalldirs) $(DESTDIR)$(@DIR@dir); \ + ## Funny invocation because Makefile variable can be empty, leading to + ## a syntax error in sh. +- @list='$(@DIR@_LISP)'; for p in $$list; do \ ++ list='$(@DIR@_LISP)'; for p in $$list; do \ + ## A header file can be in the source directory or the build directory. + if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \ + echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(@DIR@dir)/$$p"; \ |