diff options
author | Martin Schanzenbach <mschanzenbach@posteo.de> | 2015-09-14 12:52:50 +0000 |
---|---|---|
committer | Martin Schanzenbach <mschanzenbach@posteo.de> | 2015-09-14 12:52:50 +0000 |
commit | 215e6b26f3a8cda9e6829f06dcf069606a644e97 (patch) | |
tree | de35ae63481bcb792cd3b7e9c29a0da17fbd7fcc /src/identity | |
parent | a03831ba80b2936e19a4b64f512d557dfa0adf43 (diff) |
- fix install path for plugins
Diffstat (limited to 'src/identity')
-rw-r--r-- | src/identity/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/identity/Makefile.am b/src/identity/Makefile.am index 43dfbd7d78..ae90665e20 100644 --- a/src/identity/Makefile.am +++ b/src/identity/Makefile.am @@ -1,7 +1,7 @@ # This Makefile.am is in the public domain AM_CPPFLAGS = -I$(top_srcdir)/src/include - plugindir = $(libdir)/gnunet +plugindir = $(libdir)/gnunet if MINGW WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols @@ -20,8 +20,7 @@ pkgcfg_DATA = \ identity.conf lib_LTLIBRARIES = \ - libgnunetidentity.la \ - libgnunet_plugin_gnsrecord_identity.la + libgnunetidentity.la libgnunetidentity_la_SOURCES = \ identity_api.c \ @@ -41,7 +40,9 @@ libexec_PROGRAMS = \ gnunet-service-identity if HAVE_REST -lib_LTLIBRARIES += libgnunet_plugin_rest_identity.la +plugin_LTLIBRARIES = \ + libgnunet_plugin_rest_identity.la \ + libgnunet_plugin_gnsrecord_identity.la endif |