From 697037af3f7fb3f70b80ee05e48b5a0d65cb1924 Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Wed, 14 Sep 2016 11:02:44 +0200 Subject: [PATCH] Remove obsolete dependencies from install scripts (#1349) The new build script does not support ninja anymore, and we haven't been building bare-metal arm targets for long. This patch removes now-obsolete dependencies from install scripts. This can also help to reduce the load on Travis CI (as it keeps installing dependencies for each build job over and over again). JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu --- tools/apt-get-install-deps.sh | 4 ++-- tools/brew-install-deps.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/apt-get-install-deps.sh b/tools/apt-get-install-deps.sh index f413d8d59..6672658af 100755 --- a/tools/apt-get-install-deps.sh +++ b/tools/apt-get-install-deps.sh @@ -17,6 +17,6 @@ sudo apt-get update -q sudo apt-get install -q -y \ - make cmake ninja-build \ - gcc gcc-arm-none-eabi \ + make cmake \ + gcc \ cppcheck vera++ python diff --git a/tools/brew-install-deps.sh b/tools/brew-install-deps.sh index 0bf007797..08bce52ec 100755 --- a/tools/brew-install-deps.sh +++ b/tools/brew-install-deps.sh @@ -18,7 +18,7 @@ brew update PKGS=" - cmake ninja + cmake cppcheck vera++ "