Browse Source

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

Austin S. Hemmelgarn 4 years ago
parent
commit
78c0127de9
1 changed files with 0 additions and 10 deletions
  1. 0 10
      packaging/makeself/install-alpine-packages.sh

+ 0 - 10
packaging/makeself/install-alpine-packages.sh

@@ -46,13 +46,3 @@ mkdir build
 cd build || exit 1
 cmake -DCMAKE_BUILD_SHARED_LIBS=true -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_LIBDIR=lib ../
 make && make install
-
-# Judy doesnt seem to be available on the repositories, download manually and install it
-export JUDY_VER="1.0.5"
-wget -O /judy.tar.gz http://downloads.sourceforge.net/project/judy/judy/Judy-${JUDY_VER}/Judy-${JUDY_VER}.tar.gz
-tar -C / -xf /judy.tar.gz
-rm /judy.tar.gz
-cd /judy-${JUDY_VER} || exit 1
-CFLAGS="-O2 -s" CXXFLAGS="-O2 -s" ./configure
-make
-make install