Add -y to apt-get install for install-dep target 61/561/2
authorEd Warnicke <eaw@cisco.com>
Fri, 18 Mar 2016 03:37:27 +0000 (20:37 -0700)
committerGerrit Code Review <gerrit@fd.io>
Fri, 18 Mar 2016 15:02:24 +0000 (15:02 +0000)
This allows install-dep to be run non-interactively

Change-Id: I5c3e55958ed16dd3d128bbad9f317d9f2428d41a
Signed-off-by: Ed Warnicke <eaw@cisco.com>
Makefile

index ee40bfe..9b38755 100644 (file)
--- 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