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
Branches
No related tags found
Loading
...@@ -65,9 +65,9 @@ make ...@@ -65,9 +65,9 @@ make
cd "${DAEMON}" cd "${DAEMON}"
./autogen.sh ./autogen.sh
if $global; then if $global; then
./configure $CONFIGURE_FLAGS ./configure --disable-shared $CONFIGURE_FLAGS
else else
./configure $CONFIGURE_FLAGS --prefix="${INSTALL}/daemon" ./configure --disable-shared $CONFIGURE_FLAGS --prefix="${INSTALL}/daemon"
fi fi
make -j${proc} make -j${proc}
make_install $global make_install $global
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment