aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2017-03-20 16:07:31 +0000
committerJustus Winter <[email protected]>2017-03-20 16:07:31 +0000
commit392e51dd1181d035c19918222da65d08fdb2ee6d (patch)
tree2b8fe80dbc1e75ab0571c6ac36841a4df425ffc7
parentpython: Fix version check. (diff)
downloadgpgme-392e51dd1181d035c19918222da65d08fdb2ee6d.tar.gz
gpgme-392e51dd1181d035c19918222da65d08fdb2ee6d.zip
tests: Fix distcheck.
* tests/start-stop-agent: Do not create 'gpg-agent.conf' if it does not exist. Fixes-commit: 16b202d9999591b71fb8bb49f6db10ef96d4cbe8 Signed-off-by: Justus Winter <[email protected]>
-rwxr-xr-xtests/start-stop-agent3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/start-stop-agent b/tests/start-stop-agent
index 457f70d7..3ce6f22a 100755
--- a/tests/start-stop-agent
+++ b/tests/start-stop-agent
@@ -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