tests,python: Atomic directory creation
* lang/python/tests/Makefile.am: Use MIDIR_P. * tests/gpg/Makefile.am: Ditto. * tests/gpgsm/Makefile.am: Ditto. -- Solves race in parallel build when mkdir fails if directory exists. Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com> - Tweaked the ChangeLog Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
6e57379c8e
commit
41d8c7e51a
@ -89,7 +89,7 @@ clean-local:
|
||||
|
||||
|
||||
./private-keys-v1.d/gpg-sample.stamp: $(private_keys)
|
||||
test -d ./private-keys-v1.d || mkdir ./private-keys-v1.d
|
||||
$(MKDIR_P) ./private-keys-v1.d
|
||||
for k in $(private_keys); do \
|
||||
cp $$k private-keys-v1.d/$${k#$(test_srcdir)/}.key; \
|
||||
done
|
||||
|
@ -93,7 +93,7 @@ export GNUPGHOME := $(abs_builddir)
|
||||
export GPG_AGENT_INFO :=
|
||||
|
||||
./private-keys-v1.d/gpg-sample.stamp: $(srcdir)/$(private_keys)
|
||||
test -d ./private-keys-v1.d || mkdir ./private-keys-v1.d
|
||||
$(MKDIR_P) ./private-keys-v1.d
|
||||
for k in $(private_keys); do \
|
||||
cp $(srcdir)/$$k private-keys-v1.d/$$k.key; \
|
||||
done
|
||||
|
@ -70,7 +70,7 @@ export GPG_AGENT_INFO :=
|
||||
echo faked-system-time 1008241200 >> ./gpgsm.conf
|
||||
|
||||
./private-keys-v1.d/$(key_id).key: $(srcdir)/$(key_id)
|
||||
test -d ./private-keys-v1.d || mkdir ./private-keys-v1.d
|
||||
$(MKDIR_P) ./private-keys-v1.d
|
||||
cp $(srcdir)/$(key_id) private-keys-v1.d/$(key_id).key
|
||||
|
||||
./trustlist.txt:
|
||||
|
Loading…
Reference in New Issue
Block a user