Fix wrong interger type when unformating value in VAT
[vpp.git] / Makefile
index 2d6429c..94ba90d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -49,11 +49,12 @@ endif
 
 ifeq ($(findstring y,$(UNATTENDED)),y)
 CONFIRM=-y
+FORCE=--force-yes
 endif
 
 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
-.PHONY: ctags cscope doxygen wipe-doxygen
+.PHONY: ctags cscope doxygen wipe-doxygen plugins plugins-release
 
 help:
        @echo "Make Targets:"
@@ -128,11 +129,11 @@ bootstrap: $(BR)/.bootstrap.ok
 install-dep:
 ifeq ($(OS_ID),ubuntu)
 ifeq ($(OS_VERSION_ID),14.04)
-       @sudo -E apt-get $(CONFIRM) install software-properties-common
-       @sudo -E add-apt-repository $(CONFIRM) ppa:openjdk-r/ppa
+       @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
+       @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
        @sudo -E apt-get update
 endif
-       @sudo -E apt-get $(CONFIRM) install $(DEB_DEPENDS)
+       @sudo -E apt-get $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
 else ifneq ("$(wildcard /etc/redhat-release)","")
        @sudo yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
        @sudo yum install $(CONFIRM) $(RPM_DEPENDS)
@@ -163,10 +164,10 @@ wipe-release: $(BR)/.bootstrap.ok
 rebuild-release: wipe-release build-release
 
 plugins: $(BR)/.bootstrap.ok
-       $(call make,$(PLATFORM)_debug,sample-plugin-install)
+       $(call make,$(PLATFORM)_debug,plugins-install)
 
 plugins-release: $(BR)/.bootstrap.ok
-       $(call make,$(PLATFORM),sample-plugin-install)
+       $(call make,$(PLATFORM),plugins-install)
 
 STARTUP_DIR ?= $(PWD)
 ifeq ("$(wildcard $(STARTUP_CONF))","")