From 1e082d43504809a047c0ca682cc32495f1774c73 Mon Sep 17 00:00:00 2001 From: Intel Date: Fri, 8 Nov 2013 03:00:00 +0100 Subject: [PATCH] pcap: fix build without ixgbe Signed-off-by: Intel --- lib/librte_pmd_pcap/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte_pmd_pcap/Makefile b/lib/librte_pmd_pcap/Makefile index 5e6088126d..33174c0a33 100644 --- a/lib/librte_pmd_pcap/Makefile +++ b/lib/librte_pmd_pcap/Makefile @@ -42,8 +42,8 @@ CFLAGS += $(WERROR_FLAGS) # # all source are stored in SRCS-y # -SRCS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += rte_eth_pcap.c -SRCS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += rte_eth_pcap_arg_parser.c +SRCS-$(CONFIG_RTE_LIBRTE_PMD_PCAP) += rte_eth_pcap.c +SRCS-$(CONFIG_RTE_LIBRTE_PMD_PCAP) += rte_eth_pcap_arg_parser.c # @@ -53,6 +53,6 @@ SYMLINK-y-include += rte_eth_pcap.h SYMLINK-y-include += rte_eth_pcap_arg_parser.h # this lib depends upon: -DEPDIRS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += lib/librte_mbuf lib/librte_ether +DEPDIRS-$(CONFIG_RTE_LIBRTE_PMD_PCAP) += lib/librte_mbuf lib/librte_ether include $(RTE_SDK)/mk/rte.lib.mk -- 2.20.1