diff options
author | NIIBE Yutaka <[email protected]> | 2018-02-15 01:27:59 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2018-02-15 01:27:59 +0000 |
commit | c9a351f5af289c8f6919854c40f235c781b76ec7 (patch) | |
tree | 44717e067b2b05a2a0261753b267a49d093505ce | |
parent | build: Fix Makefiles for portability. (diff) | |
download | gpgme-c9a351f5af289c8f6919854c40f235c781b76ec7.tar.gz gpgme-c9a351f5af289c8f6919854c40f235c781b76ec7.zip |
build: More Makefile fix.
* lang/python/tests/Makefile.am: Avoid target with '/'.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | lang/python/tests/Makefile.am | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/lang/python/tests/Makefile.am b/lang/python/tests/Makefile.am index 25b15f2b..6224e5a9 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -79,7 +79,7 @@ xcheck: all CLEANFILES = secring.gpg pubring.gpg pubring.kbx trustdb.gpg dirmngr.conf \ gpg-agent.conf pubring.kbx~ gpg.conf pubring.gpg~ \ random_seed .gpg-v21-migrated tofu.db \ - pubring-stamp private-keys-v1.d/gpg-sample.stamp + pubring-stamp gpg-sample.stamp private_keys = \ $(test_srcdir)/13CD0F3BDF24BE53FE192D62F18737256FF6E4FD \ @@ -94,18 +94,17 @@ clean-local: BUILT_SOURCES = gpg.conf gpg-agent.conf pubring-stamp \ - private-keys-v1.d/gpg-sample.stamp + gpg-sample.stamp -private-keys-v1.d/gpg-sample.stamp: $(private_keys) +gpg-sample.stamp: $(private_keys) -gpgconf --kill all $(MKDIR_P) ./private-keys-v1.d for k in $(private_keys); do \ cp $$k private-keys-v1.d/$${k#$(test_srcdir)/}.key; \ done - echo x > ./private-keys-v1.d/gpg-sample.stamp + echo x > ./gpg-sample.stamp -pubring-stamp: $(test_srcdir)/pubdemo.asc \ - ./private-keys-v1.d/gpg-sample.stamp +pubring-stamp: $(test_srcdir)/pubdemo.asc gpg-sample.stamp $(GPG) --batch --no-permission-warning \ --import $(test_srcdir)/pubdemo.asc -$(GPG) --batch --no-permission-warning \ |