diff options
author | Werner Koch <[email protected]> | 2023-11-15 13:34:08 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-11-15 13:34:08 +0000 |
commit | a5dbd985c29baad79f5db8c9dee185b3f6c34876 (patch) | |
tree | e77b006ca9cfdb70f6c994ec5363835c09bfd464 | |
parent | gpg,gpgsm: Hide password in debug output also for asked passwords. (diff) | |
download | gnupg-a5dbd985c29baad79f5db8c9dee185b3f6c34876.tar.gz gnupg-a5dbd985c29baad79f5db8c9dee185b3f6c34876.zip |
w32: Actually add the manifest to the dirmngr.
* dirmngr/Makefile.am (dirmngr_LDADD): Fix type in dirmngr_rc_objs.
--
We had a dependency but due to the typo the resource file was not
linked.
-rw-r--r-- | dirmngr/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dirmngr/Makefile.am b/dirmngr/Makefile.am index 722a2f804..b1329bde2 100644 --- a/dirmngr/Makefile.am +++ b/dirmngr/Makefile.am @@ -104,7 +104,7 @@ dirmngr_LDADD = $(libcommonpth) \ $(DNSLIBS) $(LIBASSUAN_LIBS) \ $(KSBA_LIBS) $(NPTH_LIBS) $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) \ $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) \ - $(NETLIBS) $(dirmngr_rc_obj) + $(NETLIBS) $(dirmngr_rc_objs) if USE_LDAP dirmngr_LDADD += $(ldaplibs) $(LBER_LIBS) endif |