diff options
author | Marcus Brinkmann <[email protected]> | 2005-10-01 20:41:41 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2005-10-01 20:41:41 +0000 |
commit | bda9541b51f64e9138160811faea26be22dc7ac0 (patch) | |
tree | e63a4602eaadde31d901981a4c7a1e71471b0844 /tests/gpg/Makefile.am | |
parent | 2005-10-01 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-bda9541b51f64e9138160811faea26be22dc7ac0.tar.gz gpgme-bda9541b51f64e9138160811faea26be22dc7ac0.zip |
2005-10-01 Marcus Brinkmann <[email protected]>
* gpg/Makefile.am (EXTRA_DIST): Remove gpg.conf.
(DISTCLEANFILES): Add gpg.conf.
(all-local): Add gpg.conf.
(./gpg.conf): New target.
* gpg/gpg.conf: Remove file.
Diffstat (limited to '')
-rw-r--r-- | tests/gpg/Makefile.am | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/gpg/Makefile.am b/tests/gpg/Makefile.am index 165bd7c5..023d2aaa 100644 --- a/tests/gpg/Makefile.am +++ b/tests/gpg/Makefile.am @@ -32,10 +32,10 @@ TESTS = t-encrypt t-encrypt-sym t-encrypt-sign t-sign t-signers \ t-file-name CLEANFILES = secring.gpg pubring.gpg trustdb.gpg -DISTCLEANFILES = pubring.gpg~ random_seed +DISTCLEANFILES = pubring.gpg~ random_seed gpg.conf EXTRA_DIST = mkdemodirs pubdemo.asc secdemo.asc cipher-1.asc cipher-2.asc \ - geheim.txt pubkey-1.asc seckey-1.asc gpg.conf + geheim.txt pubkey-1.asc seckey-1.asc INCLUDES = -I$(top_srcdir)/gpgme @@ -49,11 +49,16 @@ noinst_PROGRAMS = $(TESTS) t-genkey clean-local: $(srcdir)/mkdemodirs --clean -all-local: ./pubring.gpg +all-local: ./pubring.gpg ./gpg.conf ./pubring.gpg: $(srcdir)/pubdemo.asc ./Alpha/Secret.gpg $(GPG) --homedir . --import $(srcdir)/pubdemo.asc - $(GPG) --homedir . --allow-secret-key-import --import Alpha/Secret.gpg Zulu/Secret.gpg + $(GPG) --homedir . --allow-secret-key-import \ + --import Alpha/Secret.gpg Zulu/Secret.gpg ./Alpha/Secret.gpg: secdemo.asc srcdir=$(srcdir) $(srcdir)/mkdemodirs + +./gpg.conf: +# This is required for t-sig-notations. + echo no-force-v3-sigs > ./gpg.conf |