From: Damjan Marion Date: Thu, 26 Apr 2018 16:05:46 +0000 (+0200) Subject: dpdk: fix building debs from stable dpdk tarballs (VPP-1259) X-Git-Tag: v18.07-rc1~409 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=b66be270c78f4ba950712ee461c3fa27ea3bce1d;p=vpp.git dpdk: fix building debs from stable dpdk tarballs (VPP-1259) Change-Id: I9585603e9fa1904658d84d226bd50370f1dbc889 Signed-off-by: Damjan Marion --- diff --git a/dpdk/deb/debian/rules b/dpdk/deb/debian/rules index 98b1048bade..b9a58636e80 100755 --- a/dpdk/deb/debian/rules +++ b/dpdk/deb/debian/rules @@ -8,7 +8,7 @@ BASE_VER = $(word 1, $(subst -, ,$(VERSION))) export DPDK_BUILD_DIR=$(CURDIR)/_build export DPDK_INSTALL_DIR=$(CURDIR)/debian/tmp/usr -SRC=_build/dpdk-$(BASE_VER) +SRC=$(wildcard _build/dpdk*$(BASE_VER)) MAKE_ARGS=-C ..