tests: Fix distcheck.

* tests/start-stop-agent: Do not create 'gpg-agent.conf' if it does
not exist.

Fixes-commit: 16b202d999
Signed-off-by: Justus Winter <justus@g10code.com>
This commit is contained in:
Justus Winter 2017-03-20 17:07:31 +01:00
parent 57e64d019d
commit 392e51dd11
No known key found for this signature in database
GPG Key ID: DD1A52F9DA8C9020

View File

@ -42,7 +42,8 @@ echo "starting gpg-agent.." >&2
# loopback entry to work. Old versions do not understand this though,
# so we need to be careful.
if "$GPG_AGENT" --gpgconf-test --allow-loopback-pinentry &&
! grep -q allow-loopback-pinentry "$GNUPGHOME/gpg-agent.conf"; then
test -f "$GNUPGHOME/gpg-agent.conf" &&
! grep -q allow-loopback-pinentry "$GNUPGHOME/gpg-agent.conf"; then
echo allow-loopback-pinentry >> "$GNUPGHOME/gpg-agent.conf"
fi