1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-22 10:19:57 +01:00

* Makefile.am (dist-hook): We should also look in include for

distfiles.
(EXTRA_DIST): Remove VERSION because it is generated by dist-hook.
This commit is contained in:
Werner Koch 2001-12-21 20:07:07 +00:00
parent f30e284e61
commit 7d3ba3ec8f
3 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2001-12-21 Werner Koch <wk@gnupg.org>
* 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 <dshaw@jabberwocky.com>
* configure.ac: replacement function for mkdtemp()

View File

@ -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 \

7
TODO
View File

@ -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
------------------