From ede0061febe5b2edde6a1a79d599e3c7c0faed5a Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 12 Jan 2016 11:43:06 +0100 Subject: [PATCH] tests/openpgp: Qualify executables with extension. * tests/openpgp/Makefile.am (required_pgms): Qualify executables with '$EXEEXT'. Signed-off-by: Justus Winter --- tests/openpgp/Makefile.am | 5 +++-- 1 file 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