aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-01-12 10:43:06 +0000
committerJustus Winter <[email protected]>2016-02-23 10:58:52 +0000
commitede0061febe5b2edde6a1a79d599e3c7c0faed5a (patch)
treeed15cb5a3b7a6f16bcea7ead16c1da12b359bb50
parenttests/openpgp: Reimplement 'pinentry.sh' in c. (diff)
downloadgnupg-ede0061febe5b2edde6a1a79d599e3c7c0faed5a.tar.gz
gnupg-ede0061febe5b2edde6a1a79d599e3c7c0faed5a.zip
tests/openpgp: Qualify executables with extension.
* tests/openpgp/Makefile.am (required_pgms): Qualify executables with '$EXEEXT'. Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rw-r--r--tests/openpgp/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/openpgp/Makefile.am b/tests/openpgp/Makefile.am
index 873ddcea0..01813861b 100644
--- a/tests/openpgp/Makefile.am
+++ b/tests/openpgp/Makefile.am
@@ -20,8 +20,9 @@
# Programs required before we can run these tests.
-required_pgms = ../../g10/gpg2 ../../agent/gpg-agent \
- ../../tools/gpg-connect-agent ../../tools/mk-tdata
+required_pgms = ../../g10/gpg2$(EXEEXT) ../../agent/gpg-agent$(EXEEXT) \
+ ../../tools/gpg-connect-agent$(EXEEXT) \
+ ../../tools/mk-tdata$(EXEEXT)
AM_CPPFLAGS = -I$(top_srcdir)/common
include $(top_srcdir)/am/cmacros.am