[docs] Remove JRE from FreeBSD install script

Not required since we don't use antlr3 any more
This commit is contained in:
ejurgensen 2022-05-30 17:22:03 +02:00
parent efd149f2c1
commit 94156d7cd7
1 changed files with 0 additions and 13 deletions

View File

@ -20,19 +20,6 @@ if [ "$yn" = "y" ]; then
sudo pkg install $DEPS;
fi
JRE="openjdk8-jre"
read -p "Should the script install $JRE for you? [y/N] " yn
if [ "$yn" = "y" ]; then
sudo pkg install $JRE;
read -p "Should the script add the mount points to /etc/fstab that $JRE requests? [y/N] " yn
if [ "$yn" = "y" ]; then
sudo sh -c 'echo "fdesc /dev/fd fdescfs rw 0 0" >> /etc/fstab'
sudo sh -c 'echo "proc /proc procfs rw 0 0" >> /etc/fstab'
sudo mount /dev/fd
sudo mount /proc
fi
fi
WORKDIR=~/owntone_build
CONFIG=/usr/local/etc/owntone.conf
read -p "Should the script create $WORKDIR and use it for building? [Y/n] " yn