diff options
author | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2018-06-05 12:43:55 +0200 |
---|---|---|
committer | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2018-06-05 13:05:32 +0200 |
commit | 7f302a6293aa31de535bb7066f8bec033f50e38c (patch) | |
tree | 90da2787d54f59a258e3b92b59d9bd585dfb5a14 /debian/rules | |
parent | 468c6935a8f66ff45f4c0d7ee40f4df3b0e35811 (diff) |
d/rules: handle IFCVF as callback driver
Change-Id: I24222cd2ba333842063dc0f590c31e38cd7be051
Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 5 insertions, 0 deletions
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; \ |