aboutsummaryrefslogtreecommitdiffstats
path: root/tests/gpg
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2001-12-14 15:35:29 +0000
committerMarcus Brinkmann <[email protected]>2001-12-14 15:35:29 +0000
commita54c0a05b5ba239e06444e55b2a4c2bd87c761ce (patch)
tree2c69162db342ab59c8229493f6de38bbe12d2313 /tests/gpg
parent2001-12-14 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-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.am12
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
-
-
-
-
-
-
-