diff options
author | Werner Koch <wk@gnupg.org> | 2020-08-04 10:20:53 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2020-10-04 20:45:51 +0200 |
commit | 4747b9e868163c9acfed7c6c009f64d8ac43a3a6 (patch) | |
tree | 905d428390159fc8a39d4eb81ea172b6e9157aeb /tests/Makefile.am | |
parent | gpgconf: New option --show-versions. (diff) | |
download | gnupg2-4747b9e868163c9acfed7c6c009f64d8ac43a3a6.tar.xz gnupg2-4747b9e868163c9acfed7c6c009f64d8ac43a3a6.zip |
tests: Improve handling of spaces in $PATH
--
Signed-off-by: Werner Koch <wk@gnupg.org>
(cherry picked from commit b2590f2e47fe8ab7352a9e3769b195ff9f398dd7)
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index b1138602b..65978ae3f 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -26,7 +26,7 @@ GPGSM = ../sm/gpgsm # if the shell used for inittests would uses an internal version of # pwd which handles symlinks differently. TESTS_ENVIRONMENT = GNUPGHOME=`/bin/pwd` GPG_AGENT_INFO= LC_ALL=C \ - GPGSM=$(GPGSM) $(srcdir)/runtest + GPGSM="$(GPGSM)" "$(srcdir)/runtest" testscripts = sm-sign+verify sm-verify |