diff options
author | NIIBE Yutaka <[email protected]> | 2018-01-29 23:22:57 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2018-01-29 23:22:57 +0000 |
commit | 59fcabbdf537b2745ef0c3cae908b21970a5b39b (patch) | |
tree | da3a22fe1d60da298406d64704a069b19a10950b | |
parent | Fix compile error message. (diff) | |
download | gpgme-59fcabbdf537b2745ef0c3cae908b21970a5b39b.tar.gz gpgme-59fcabbdf537b2745ef0c3cae908b21970a5b39b.zip |
Fix for BSD Make.
* tests/gpg/Makefile.am, tests/gpgsm/Makefile.am: Remove ./.
--
GNU Make is powerful enough for handling and interpreting of
pathname as target, but BSD Make is not.
GnuPG-bug-id: 3056
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | tests/gpg/Makefile.am | 2 | ||||
-rw-r--r-- | tests/gpgsm/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/gpg/Makefile.am b/tests/gpg/Makefile.am index 642e0a08..a2d24118 100644 --- a/tests/gpg/Makefile.am +++ b/tests/gpg/Makefile.am @@ -96,7 +96,7 @@ private-keys-v1.d/gpg-sample.stamp: $(srcdir)/$(private_keys) done echo x > ./private-keys-v1.d/gpg-sample.stamp -pubring-stamp: $(srcdir)/pubdemo.asc ./private-keys-v1.d/gpg-sample.stamp +pubring-stamp: $(srcdir)/pubdemo.asc private-keys-v1.d/gpg-sample.stamp $(GPG) --batch --no-permission-warning \ --import $(srcdir)/pubdemo.asc -$(GPG) --batch --no-permission-warning \ diff --git a/tests/gpgsm/Makefile.am b/tests/gpgsm/Makefile.am index 4ab22833..9d47e2ae 100644 --- a/tests/gpgsm/Makefile.am +++ b/tests/gpgsm/Makefile.am @@ -59,7 +59,7 @@ export GPG_AGENT_INFO := BUILT_SOURCES = gpgsm.conf trustlist.txt pubring-stamp \ private-keys-v1.d/gpg-sample.stamp -pubring-stamp: $(srcdir)/cert_g10code_test1.der ./private-keys-v1.d/gpg-sample.stamp +pubring-stamp: $(srcdir)/cert_g10code_test1.der private-keys-v1.d/gpg-sample.stamp $(GPGSM) --import $(srcdir)/cert_g10code_test1.der touch pubring-stamp |