diff options
author | Marcus Brinkmann <[email protected]> | 2001-12-14 15:35:29 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2001-12-14 15:35:29 +0000 |
commit | a54c0a05b5ba239e06444e55b2a4c2bd87c761ce (patch) | |
tree | 2c69162db342ab59c8229493f6de38bbe12d2313 /tests/gpg | |
parent | 2001-12-14 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-a54c0a05b5ba239e06444e55b2a4c2bd87c761ce.tar.gz gpgme-a54c0a05b5ba239e06444e55b2a4c2bd87c761ce.zip |
2001-12-14 Marcus Brinkmann <[email protected]>
* configure.ac (GPG): Substitute this variable.
(GPGSM): Likewise.
tests/
CVS2001-12-14 Marcus Brinkmann <[email protected]>
* gpg/Makefile.am (GPG): Set to @GPG_PATH@.
(./pubring.gpg): Use $(GPG) instead gpg.
(./secring.gpg): Likewise.
* gpgsm/t-import.c (main): Remove third test case.
* gpgsm/Makefile.am (GPGSM): Set to @GPGSM@.
(all-local): New target.
(./pubcerts.kbx): Likewise.
* gpgsm/t-encrypt.c: New file.
* gpgsm/Makefile.am (TESTS): Add t-encrypt.
Diffstat (limited to 'tests/gpg')
-rw-r--r-- | tests/gpg/Makefile.am | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/tests/gpg/Makefile.am b/tests/gpg/Makefile.am index d313b3ab..a0777f09 100644 --- a/tests/gpg/Makefile.am +++ b/tests/gpg/Makefile.am @@ -19,6 +19,7 @@ ## Process this file with automake to produce Makefile.in +GPG = @GPG@ TESTS_ENVIRONMENT = GNUPGHOME=. @@ -42,17 +43,10 @@ distclean-local: all-local: ./pubring.gpg ./secring.gpg ./pubring.gpg: $(srcdir)/pubdemo.asc - -gpg --homedir . --import $(srcdir)/pubdemo.asc + $(GPG) --homedir . --import $(srcdir)/pubdemo.asc ./secring.gpg: ./Alpha/Secret.gpg - -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 - - - - - - - |