From 584920edb53b394d61e4b2f6256a02825d5734b2 Mon Sep 17 00:00:00 2001 From: Dave Parker Date: Wed, 24 Apr 2019 14:29:23 +0100 Subject: [PATCH] Small fixes in fresh install scripts (dependencies). --- prism/etc/scripts/prism-install-rhel | 6 +++--- prism/etc/scripts/prism-install-ubuntu | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/prism/etc/scripts/prism-install-rhel b/prism/etc/scripts/prism-install-rhel index 76e1ab04..e45c3e49 100755 --- a/prism/etc/scripts/prism-install-rhel +++ b/prism/etc/scripts/prism-install-rhel @@ -5,9 +5,9 @@ set -e # Abort if one of the commands fail set -x # Print commands as they are executed -# Install dependencies: make/gcc/Java -sudo yum update -sudo yum -y install git gcc gcc-c++ java-1.8.0-openjdk-devel git +# Install dependencies: make/gcc/Java/git +sudo yum -y update +sudo yum -y install make gcc gcc-c++ java-1.8.0-openjdk-devel git # Install Python (only needed for testing (prism-auto) currently) sudo yum -y install python diff --git a/prism/etc/scripts/prism-install-ubuntu b/prism/etc/scripts/prism-install-ubuntu index d94e428d..4128697b 100755 --- a/prism/etc/scripts/prism-install-ubuntu +++ b/prism/etc/scripts/prism-install-ubuntu @@ -5,8 +5,8 @@ set -e # Abort if one of the commands fail set -x # Print commands as they are executed -# Install dependencies: make/gcc/Java -sudo apt-get update +# Install dependencies: make/gcc/Java/git +sudo apt-get -y update sudo apt -y install make gcc g++ default-jdk git # Install Python (only needed for testing (prism-auto) currently)