diff options
author | Damjan Marion <damarion@cisco.com> | 2018-09-21 12:27:45 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-09-21 17:51:25 +0000 |
commit | 561f2730e8b137cd4e7132b05dab49f6e768ae23 (patch) | |
tree | 102d8db51c4d9ea5ecd7d355cdf9fdeb12394539 /build/external/deb/debian | |
parent | d974cd4262238168db65b9d837066f7c7511a9c5 (diff) |
add: nasm and ipsec-mb into vpp-ext-deps packaging
Change-Id: Ie5d85af84ae0d8b15edf5962213ed1b1953bee2f
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'build/external/deb/debian')
-rwxr-xr-x | build/external/deb/debian/rules | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/external/deb/debian/rules b/build/external/deb/debian/rules index 6ffefc1d0b2..6393f82716b 100755 --- a/build/external/deb/debian/rules +++ b/build/external/deb/debian/rules @@ -1,12 +1,13 @@ #!/usr/bin/make -f DH_VERBOSE = 1 +DEB_BUILD_OPTIONS = noddebs PKG=vpp-ext-deps VERSION = $(shell dpkg-parsechangelog | sed -nr '/^Version:/s/Version: //p') BASE_VER = $(word 1, $(subst -, ,$(VERSION))) -export DPDK_BUILD_DIR=$(CURDIR)/_build -export DPDK_INSTALL_DIR=$(CURDIR)/debian/tmp/opt/vpp/external/$(shell uname -m)/ +export BUILD_DIR=$(CURDIR)/_build +export INSTALL_DIR=$(CURDIR)/debian/tmp/opt/vpp/external/$(shell uname -m)/ MAKE_ARGS=-C .. |