@cryptotaxi247 / netdata-1 / commits / 78c0127de

Use our installer's bundling code for libJudy in static installs. (#9988)

Austin S. Hemmelgarn committed Sep 28, 2020 at 07:12 UTC 78c0127de98f03ca4b5bc9c15efc535e16a7518a
1 file changed -10
packaging/makeself/install-alpine-packages.sh
-10
@@ -46,13 +46,3 @@ mkdir build
46 cd build || exit 1
47 cmake -DCMAKE_BUILD_SHARED_LIBS=true -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_LIBDIR=lib ../
48 make && make install
49 -
50 -# Judy doesnt seem to be available on the repositories, download manually and install it
51 -export JUDY_VER="1.0.5"
52 -wget -O /judy.tar.gz http://downloads.sourceforge.net/project/judy/judy/Judy-${JUDY_VER}/Judy-${JUDY_VER}.tar.gz
53 -tar -C / -xf /judy.tar.gz
54 -rm /judy.tar.gz
55 -cd /judy-${JUDY_VER} || exit 1
56 -CFLAGS="-O2 -s" CXXFLAGS="-O2 -s" ./configure
57 -make
58 -make install