- Timestamp:
- Jan 23, 2016, 6:44:37 PM (7 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, proxy-ticket, upstream
- Children:
- 948c181
- Parents:
- f87c1b5
- Location:
- test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/Makefile.am
rf87c1b5 r5b6a5d9 42 42 x509_tokens = $(x509_certs) $(x509_keys) 43 43 tokens = $(x509_tokens) $(pgp_tokens) 44 45 if !DISABLE_FLOCK 46 # flock command for write access to the authority keyring 47 GPG_FLOCK = $(FLOCK) authority/lock 48 endif 44 49 45 50 include $(srcdir)/test_ca.mk -
test/test_ca.mk
rf87c1b5 r5b6a5d9 35 35 # conditions with parallel make. Locking avoids this problem. 36 36 %/cert.pgp: %/minimal.pgp authority/gpg.conf 37 GNUPGHOME=authority flock authority/lockgpg --import $<38 GNUPGHOME=authority flock authority/lockgpg --batch --sign-key --no-tty --yes "$$(GNUPGHOME=$(dir $@) gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)"37 GNUPGHOME=authority $(GPG_FLOCK) gpg --import $< 38 GNUPGHOME=authority $(GPG_FLOCK) gpg --batch --sign-key --no-tty --yes "$$(GNUPGHOME=$(dir $@) gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)" 39 39 GNUPGHOME=authority gpg --armor --export "$$(GNUPGHOME=$(dir $@) gpg --with-colons --list-secret-keys --fingerprint | grep ^fpr: | cut -f 10 -d :)" > $@ 40 40
Note: See TracChangeset
for help on using the changeset viewer.