diff options
author | gdt <gdt@pkgsrc.org> | 2015-09-09 22:01:01 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2015-09-09 22:01:01 +0000 |
commit | 7c792106061a987366b73ea088bb49e1f81651e2 (patch) | |
tree | 428e542c58d2c57bf7ee0249c88b3811430e5f39 | |
parent | 8260151d4baf96a520cc9609ae918144d1022f57 (diff) | |
download | pkgsrc-7c792106061a987366b73ea088bb49e1f81651e2.tar.gz |
Belatedly add patch missing from previous commit.
-rw-r--r-- | security/pgpdump/patches/patch-Makefile.in | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/security/pgpdump/patches/patch-Makefile.in b/security/pgpdump/patches/patch-Makefile.in new file mode 100644 index 00000000000..3962dad6d78 --- /dev/null +++ b/security/pgpdump/patches/patch-Makefile.in @@ -0,0 +1,19 @@ +$NetBSD: patch-Makefile.in,v 1.1 2015/09/09 22:01:01 gdt Exp $ + +It's not clear that this is necessary, but it carries on the tradition +of the old patch-aa. + +--- Makefile.in.orig 2014-08-01 03:36:50.000000000 +0000 ++++ Makefile.in +@@ -38,9 +38,9 @@ distclean: + + install: all + $(INSTALL) -d $(DESTDIR)$(bindir) +- $(INSTALL) -cp -pm755 $(PROG) $(DESTDIR)$(bindir) ++ $(BSD_INSTALL_PROGRAM) -cp -pm755 $(PROG) $(DESTDIR)$(bindir) + $(INSTALL) -d $(DESTDIR)$(mandir)/man1 +- $(INSTALL) -cp -pm644 $(MAN) $(DESTDIR)$(mandir)/man1 ++ $(BSD_INSTALL_MAN) -cp -pm644 $(MAN) $(DESTDIR)$(mandir)/man1 + + archive: + git archive master -o ~/pgpdump-$(VERSION).tar --prefix=pgpdump-$(VERSION)/ |