From: Ed Warnicke Date: Fri, 18 Mar 2016 03:37:27 +0000 (-0700) Subject: Add -y to apt-get install for install-dep target X-Git-Tag: v16.06-rc1~232 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=76a66c1f06db0386aff887de6cbd0687256fb17f;p=vpp.git Add -y to apt-get install for install-dep target This allows install-dep to be run non-interactively Change-Id: I5c3e55958ed16dd3d128bbad9f317d9f2428d41a Signed-off-by: Ed Warnicke --- diff --git a/Makefile b/Makefile index ee40bfeb148..9b387552db1 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,7 @@ bootstrap: $(BR)/.bootstrap.ok install-dep: ifeq ("$(shell lsb_release -si)", "Ubuntu") - @sudo apt-get install $(DEB_DEPENDS) + @sudo apt-get -y install $(DEB_DEPENDS) else $(error "This option currently works only on Ubuntu systems") endif