aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile3
-rw-r--r--src/identity-provider/Makefile.am4
2 files changed, 4 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 3f3e5b29b..5a193a46d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -47,9 +47,10 @@ RUN git checkout gnuidentity
47RUN mkdir /usr/src/gnunet 47RUN mkdir /usr/src/gnunet
48WORKDIR /usr/src/gnunet 48WORKDIR /usr/src/gnunet
49ADD . . 49ADD . .
50ARG NUM_JOBS
50RUN ./bootstrap 51RUN ./bootstrap
51RUN ./configure --prefix=/usr/local 52RUN ./configure --prefix=/usr/local
52RUN make -j 53RUN make -j$NUM_JOBS
53RUN make install 54RUN make install
54 55
55RUN groupadd gnunetdns 56RUN groupadd gnunetdns
diff --git a/src/identity-provider/Makefile.am b/src/identity-provider/Makefile.am
index 6a56b2e91..f64f1aa68 100644
--- a/src/identity-provider/Makefile.am
+++ b/src/identity-provider/Makefile.am
@@ -52,7 +52,7 @@ libgnunet_plugin_gnsrecord_identity_provider_la_LDFLAGS = \
52libgnunet_plugin_identity_provider_sqlite_la_SOURCES = \ 52libgnunet_plugin_identity_provider_sqlite_la_SOURCES = \
53 plugin_identity_provider_sqlite.c 53 plugin_identity_provider_sqlite.c
54libgnunet_plugin_identity_provider_sqlite_la_LIBADD = \ 54libgnunet_plugin_identity_provider_sqlite_la_LIBADD = \
55 $(top_builddir)/src/identity-provider/libgnunetidentityprovider.la \ 55 libgnunetidentityprovider.la \
56 $(top_builddir)/src/sq/libgnunetsq.la \ 56 $(top_builddir)/src/sq/libgnunetsq.la \
57 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 57 $(top_builddir)/src/statistics/libgnunetstatistics.la \
58 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \ 58 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
@@ -72,7 +72,7 @@ gnunet_service_identity_provider_LDADD = \
72 $(top_builddir)/src/identity/libgnunetidentity.la \ 72 $(top_builddir)/src/identity/libgnunetidentity.la \
73 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 73 $(top_builddir)/src/statistics/libgnunetstatistics.la \
74 $(top_builddir)/src/credential/libgnunetcredential.la \ 74 $(top_builddir)/src/credential/libgnunetcredential.la \
75 $(top_builddir)/src/identity-provider/libgnunetidentityprovider.la \ 75 libgnunetidentityprovider.la \
76 $(top_builddir)/src/gns/libgnunetgns.la \ 76 $(top_builddir)/src/gns/libgnunetgns.la \
77 $(GN_LIBINTL) 77 $(GN_LIBINTL)
78 78