From: Christian Ehrhardt Date: Tue, 5 Jun 2018 10:43:55 +0000 (+0200) Subject: d/rules: handle IFCVF as callback driver X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F12%2F12912%2F1;p=deb_dpdk.git d/rules: handle IFCVF as callback driver Change-Id: I24222cd2ba333842063dc0f590c31e38cd7be051 Signed-off-by: Christian Ehrhardt --- diff --git a/debian/rules b/debian/rules index 60fa3e01..f05d35fa 100755 --- a/debian/rules +++ b/debian/rules @@ -331,6 +331,11 @@ endif echo "MEMPOOL: linking $${LIBF} into RTE_EAL_PMD_PATH at $${LIBD}/$(DPDK_DRIVER_DIR)/"; \ ln -s --relative --target-directory=$${LIBD}/$(DPDK_DRIVER_DIR)/ $${LIBD}/$${LIBF}; \ fi; \ + if [ "$${LIBF#librte_ifcvf_}x" != "$${LIBF}x" ]; then \ + mkdir -p $${LIBD}/$(DPDK_DRIVER_DIR); \ + echo "IFCVF: linking $${LIBF} into RTE_EAL_PMD_PATH at $${LIBD}/$(DPDK_DRIVER_DIR)/"; \ + ln -s --relative --target-directory=$${LIBD}/$(DPDK_DRIVER_DIR)/ $${LIBD}/$${LIBF}; \ + fi; \ if [ "$${LIBF#librte_eal}x" != "$${LIBF}x" ]; then \ mkdir -p $${LIBD}/$(DPDK_DRIVER_DIR); \ fi; \