diff options
author | Werner Koch <wk@gnupg.org> | 2009-03-19 08:09:31 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2009-03-19 08:09:31 +0100 |
commit | 588a7c34bb6cdffa8ec40d1e7fda047c5da38a61 (patch) | |
tree | 1399895643266c827878425babeb84039d6f4295 /common/Makefile.am | |
parent | Add server option with-ephemeral-keys. (diff) | |
download | gnupg2-588a7c34bb6cdffa8ec40d1e7fda047c5da38a61.tar.xz gnupg2-588a7c34bb6cdffa8ec40d1e7fda047c5da38a61.zip |
Make sure not to leak file descriptors if running gpg-agent with a
command. Restore the signal mask to solve a problem in Mono.
Diffstat (limited to 'common/Makefile.am')
-rw-r--r-- | common/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index d1a2d4822..72c7d179f 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -108,7 +108,7 @@ status-codes.h: Makefile mkstrtable.awk exstatus.awk status.h # # Module tests # -module_tests = t-convert t-percent t-gettime t-sysutils t-sexputil +module_tests = t-convert t-percent t-gettime t-sysutils t-sexputil t-exechelp module_maint_tests = t-helpfile t-b64 t_common_ldadd = libcommon.a ../jnlib/libjnlib.a ../gl/libgnu.a \ @@ -121,6 +121,7 @@ t_sysutils_LDADD = $(t_common_ldadd) t_helpfile_LDADD = $(t_common_ldadd) t_sexputil_LDADD = $(t_common_ldadd) t_b64_LDADD = $(t_common_ldadd) +t_exechelp_LDADD = $(t_common_ldadd) |