From f431f72d9ab213d8989bfb45366321bbb983d888 Mon Sep 17 00:00:00 2001 From: "Schanzenbach, Martin" Date: Wed, 25 Oct 2017 14:47:48 +0200 Subject: [PATCH] -fixes --- Dockerfile | 3 ++- src/identity-provider/Makefile.am | 4 ++-- 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 RUN mkdir /usr/src/gnunet WORKDIR /usr/src/gnunet ADD . . +ARG NUM_JOBS RUN ./bootstrap RUN ./configure --prefix=/usr/local -RUN make -j +RUN make -j$NUM_JOBS RUN make install RUN 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 = \ libgnunet_plugin_identity_provider_sqlite_la_SOURCES = \ plugin_identity_provider_sqlite.c libgnunet_plugin_identity_provider_sqlite_la_LIBADD = \ - $(top_builddir)/src/identity-provider/libgnunetidentityprovider.la \ + libgnunetidentityprovider.la \ $(top_builddir)/src/sq/libgnunetsq.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la \ $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \ @@ -72,7 +72,7 @@ gnunet_service_identity_provider_LDADD = \ $(top_builddir)/src/identity/libgnunetidentity.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la \ $(top_builddir)/src/credential/libgnunetcredential.la \ - $(top_builddir)/src/identity-provider/libgnunetidentityprovider.la \ + libgnunetidentityprovider.la \ $(top_builddir)/src/gns/libgnunetgns.la \ $(GN_LIBINTL) -- 2.25.1