diff options
author | Werner Koch <[email protected]> | 2001-12-21 20:07:07 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2001-12-21 20:07:07 +0000 |
commit | 7d3ba3ec8fd660be851adb41b2cbf5801b12a174 (patch) | |
tree | 8ff99b142e5501b86af585ebed979acb33f52a13 | |
parent | * options.in: Remove load-extension tiger (diff) | |
download | gnupg-7d3ba3ec8fd660be851adb41b2cbf5801b12a174.tar.gz gnupg-7d3ba3ec8fd660be851adb41b2cbf5801b12a174.zip |
* Makefile.am (dist-hook): We should also look in include for
distfiles.
(EXTRA_DIST): Remove VERSION because it is generated by dist-hook.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | TODO | 7 |
3 files changed, 15 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2001-12-21 Werner Koch <[email protected]> + + * 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 <[email protected]> * 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 \ @@ -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 ------------------ |