From: Ed Warnicke Date: Wed, 8 Nov 2017 20:39:31 +0000 (-0700) Subject: Provide useful output when installed vpp-dpdk version is incorrect X-Git-Tag: v18.04-rc0~24 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F26%2F9326%2F2;p=vpp.git Provide useful output when installed vpp-dpdk version is incorrect Change-Id: Icb931de82cb5969fa4976611629e2f882c720a99 Signed-off-by: Ed Warnicke --- diff --git a/dpdk/Makefile b/dpdk/Makefile index 111a256b751..869cac22f7b 100644 --- a/dpdk/Makefile +++ b/dpdk/Makefile @@ -386,6 +386,11 @@ build-deb: $(DEV_DEB) install-deb: ifneq ($(INSTALLED_DEB_VER),$(DPDK_VERSION)-$(PKG_SUFFIX)) + @echo "==========================================================" + @echo " Out of date DPDK package installed." + @echo " Installed: $(INSTALLED_DEB_VER)" + @echo " Needed: $(DPDK_VERSION)-$(PKG_SUFFIX)" + @echo "==========================================================" @make $(DEV_DEB) @sudo dpkg -i $(DEV_DEB) else