diff --git a/Tools/setup/arch.sh b/Tools/setup/arch.sh index b64040c8ff..83bc225d49 100755 --- a/Tools/setup/arch.sh +++ b/Tools/setup/arch.sh @@ -48,7 +48,6 @@ echo "Installing PX4 general dependencies" sudo pacman -Sy --noconfirm --needed \ astyle \ base-devel \ - ccache \ clang \ cmake \ cppcheck \ diff --git a/Tools/setup/ubuntu.sh b/Tools/setup/ubuntu.sh index 73a2bade38..852f38c94c 100755 --- a/Tools/setup/ubuntu.sh +++ b/Tools/setup/ubuntu.sh @@ -77,7 +77,6 @@ sudo apt-get update -y --quiet sudo DEBIAN_FRONTEND=noninteractive apt-get -y --quiet --no-install-recommends install \ astyle \ build-essential \ - ccache \ cmake \ cppcheck \ file \ @@ -101,12 +100,6 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get -y --quiet --no-install-recommends i zip \ ; -if [[ "${UBUNTU_RELEASE}" == "16.04" ]]; then - echo "Installing Ubuntu 16.04 PX4-compatible ccache version" - wget -O /tmp/ccache_3.4.1-1_amd64.deb http://launchpadlibrarian.net/356662933/ccache_3.4.1-1_amd64.deb - sudo dpkg -i /tmp/ccache_3.4.1-1_amd64.deb -fi - # Python3 dependencies echo echo "Installing PX4 Python3 dependencies"