Skip to content
Snippets Groups Projects
Commit a61de1fa authored by Stepan Salenikovich's avatar Stepan Salenikovich
Browse files

packaging: configure with --disable-shared

configure.ac in the daemon was patched to properly generate a .so
which is the default in auto tools; however we don't want to ship
a .so and we also want to link to libring statically, so
we run configure with --disable-shared

Change-Id: I49d581c9176049385e0f42dad27a25ffcd172d8a
Tuleap: #699
parent e1c48706
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,8 @@ override_dh_auto_configure:
cd daemon && \
./autogen.sh && \
./configure \
--prefix=/usr
--prefix=/usr \
--disable-shared
#############################
## libringclient configure ##
......
......@@ -107,7 +107,8 @@ cd %{_builddir}/ring-project/daemon && \
./autogen.sh && \
./configure \
--prefix=%{_prefix} \
--libdir=%{_libdir}
--libdir=%{_libdir} \
--disable-shared
#############################
## libringclient configure ##
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment