From 7d3ba3ec8fd660be851adb41b2cbf5801b12a174 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Fri, 21 Dec 2001 20:07:07 +0000 Subject: [PATCH] * Makefile.am (dist-hook): We should also look in include for distfiles. (EXTRA_DIST): Remove VERSION because it is generated by dist-hook. --- ChangeLog | 6 ++++++ Makefile.am | 4 ++-- TODO | 7 +++++++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a3f7adca7..6b6756c41 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-12-21 Werner Koch + + * Makefile.am (dist-hook): We should also look in include for + distfiles. + (EXTRA_DIST): Remove VERSION because it is generated by dist-hook. + 2001-12-20 David Shaw * configure.ac: replacement function for mkdtemp() diff --git a/Makefile.am b/Makefile.am index 745cba252..427d7b639 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,7 +25,7 @@ checks = checks endif SUBDIRS = intl zlib util mpi cipher tools g10 keyserver po doc ${checks} -EXTRA_DIST = VERSION PROJECTS BUGS config.h.in +EXTRA_DIST = PROJECTS BUGS config.h.in DISTCLEANFILES = g10defs.h # Add all the files listed in "distfiles" files to the distribution, @@ -34,7 +34,7 @@ DISTCLEANFILES = g10defs.h dist-hook: @set -e; \ for file in `cd $(top_srcdir); \ - find scripts mpi -type f -name distfiles`; do \ + find scripts mpi include -type f -name distfiles`; do \ dir=`dirname $$file` ; $(mkinstalldirs) $(distdir)/$$dir ; \ for i in distfiles `cat $(top_srcdir)/$$file` ; do \ ln $(top_srcdir)/$$dir/$$i $(distdir)/$$dir/$$i 2> /dev/null \ diff --git a/TODO b/TODO index 6fdf68285..430812312 100644 --- a/TODO +++ b/TODO @@ -119,6 +119,13 @@ * keyflags don't distinguish between {certify,signature}-only. + * Instead of issuing a "signature packet without keyid" gpg should + try to get the keyID from a corresponding one-pass signature + packet (See bug report 817). This is not easy to do as we don't + store the one-pass packets. + + + Things we won't do ------------------