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

make-ring: build daemon with --disable-shared

There are occasionally issues building a shared libring object on
some systems. Its also easier to run dring in gdb when it is linked
statically.

Change-Id: Iec79cfc4c0134664697404b3abeb411bf992e5a4
parent 6a8089d7
No related branches found
No related tags found
No related merge requests found
......@@ -65,9 +65,9 @@ make
cd "${DAEMON}"
./autogen.sh
if $global; then
./configure $CONFIGURE_FLAGS
./configure --disable-shared $CONFIGURE_FLAGS
else
./configure $CONFIGURE_FLAGS --prefix="${INSTALL}/daemon"
./configure --disable-shared $CONFIGURE_FLAGS --prefix="${INSTALL}/daemon"
fi
make -j${proc}
make_install $global
......
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