diff options
author | Justus Winter <[email protected]> | 2016-07-15 10:28:46 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-07-15 10:35:15 +0000 |
commit | c49c43d7e4229fd9f1bc55e17fa32fdc334dbef6 (patch) | |
tree | 8e0dfbcc27d8cdb1f32a18ef866d36a31af6bf7b | |
parent | g10: Fix building without trust models. (diff) | |
download | gnupg-c49c43d7e4229fd9f1bc55e17fa32fdc334dbef6.tar.gz gnupg-c49c43d7e4229fd9f1bc55e17fa32fdc334dbef6.zip |
gpgscm: Fix linking.
* tests/gpgscm/Makefile.am: Add -lintl.
Signed-off-by: Justus Winter <[email protected]>
-rw-r--r-- | tests/gpgscm/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gpgscm/Makefile.am b/tests/gpgscm/Makefile.am index e57a4bbe4..dad30ed8a 100644 --- a/tests/gpgscm/Makefile.am +++ b/tests/gpgscm/Makefile.am @@ -45,7 +45,7 @@ gpgscm_CFLAGS = -imacros scheme-config.h \ gpgscm_SOURCES = main.c private.h ffi.c ffi.h ffi-private.h \ scheme-config.h opdefines.h scheme.c scheme.h scheme-private.h gpgscm_LDADD = $(LDADD) $(common_libs) \ - $(NETLIBS) $(LIBICONV) $(LIBREADLINE) \ + $(NETLIBS) $(LIBICONV) $(LIBREADLINE) $(LIBINTL) \ $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) t_child_SOURCES = t-child.c |