diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-03-17 20:37:27 -0700 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-03-18 15:02:24 +0000 |
commit | 76a66c1f06db0386aff887de6cbd0687256fb17f (patch) | |
tree | bb827ce565244755b50411cb0e7ad11a79824f55 | |
parent | ba8c540c52fc83237dff2eb87c259037da448e39 (diff) |
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 <eaw@cisco.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |