From 932e8132176cacad5bea6218bedc246e4b188934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Fri, 25 Apr 2014 00:13:04 +0200 Subject: [PATCH] added openssh to dependencys on run_on_device --- run_on_device.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_on_device.sh b/run_on_device.sh index 0aa61f41..b8108345 100755 --- a/run_on_device.sh +++ b/run_on_device.sh @@ -37,7 +37,7 @@ install_ssh_key() { } install_dependencies() { - exec_with_ssh $SUDO apt-get -y install build-essential gcc-4.7 g++-4.7 ccache gdb + exec_with_ssh $SUDO apt-get -y install build-essential gcc-4.7 g++-4.7 ccache gdb openssh echo "** Switching system to gcc 4.7 ***" exec_with_ssh update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.7 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.7 }