diff options
author | David Shaw <[email protected]> | 2003-06-26 21:47:49 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-06-26 21:47:49 +0000 |
commit | df441baf1cd757a45ccec84979d40295be53d2e8 (patch) | |
tree | 34cf7067a63d4ba795a800c2b49bd8503a7497a5 | |
parent | * keyserver.c (keyserver_spawn): Use ascii_isspace instead of spacep since (diff) | |
download | gnupg-df441baf1cd757a45ccec84979d40295be53d2e8.tar.gz gnupg-df441baf1cd757a45ccec84979d40295be53d2e8.zip |
* Makefile.am: Add --no-permission-warning to avoid spurious warning when
importing demo keys.
-rw-r--r-- | checks/ChangeLog | 5 | ||||
-rw-r--r-- | checks/Makefile.am | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/checks/ChangeLog b/checks/ChangeLog index 99ba50089..cc6fe736d 100644 --- a/checks/ChangeLog +++ b/checks/ChangeLog @@ -1,3 +1,8 @@ +2003-06-26 David Shaw <[email protected]> + + * Makefile.am: Add --no-permission-warning to avoid spurious + warning when importing demo keys. + 2003-05-09 David Shaw <[email protected]> * mds.test: Note that missing algorithms are not errors. diff --git a/checks/Makefile.am b/checks/Makefile.am index c53f0bdc8..d09fa1767 100644 --- a/checks/Makefile.am +++ b/checks/Makefile.am @@ -18,7 +18,7 @@ # Process this file with automake to create Makefile.in -GPG_IMPORT = ../g10/gpg --homedir . --quiet --yes --import +GPG_IMPORT = ../g10/gpg --homedir . --quiet --yes --no-permission-warning --import TESTS = version.test mds.test \ decrypt.test decrypt-dsa.test \ @@ -98,4 +98,3 @@ plain-large: cat $(srcdir)/../doc/HACKING \ $(srcdir)/../doc/DETAILS \ $(srcdir)/../doc/FAQ >plain-large - |