diff options
author | Martin Klozik <martinx.klozik@intel.com> | 2017-01-24 08:23:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-24 08:23:37 +0000 |
commit | a9deedfca31a34095cf12ed3abb45212c45fb725 (patch) | |
tree | 6c7eaac3ba4fae78822a7174411fb0235a641040 /src | |
parent | 1aee66885e918f2eeabbad331e37b14a4d774784 (diff) | |
parent | f3205933d1ef9da4151c58c13d28ba1f26bb12a0 (diff) |
Merge "centos73_install: Provide installer script for CentOS 7.3"
Diffstat (limited to 'src')
-rwxr-xr-x | src/dpdk/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dpdk/Makefile b/src/dpdk/Makefile index 93cb7292..69671169 100755 --- a/src/dpdk/Makefile +++ b/src/dpdk/Makefile @@ -79,6 +79,12 @@ else $(AT)sed -i -e 's/CONFIG_RTE_LIBRTE_VHOST_USER=.\+/CONFIG_RTE_LIBRTE_VHOST_USER=$(VHOST_USER)/g' $(CONFIG_FILE_LINUXAPP) $(AT)sed -i -e 's/CONFIG_RTE_BUILD_COMBINE_LIBS=./CONFIG_RTE_BUILD_COMBINE_LIBS=y/g' $(CONFIG_FILE_LINUXAPP) endif +# CentOS 7.3 specific config changes to compile +ifeq ($(ID),"centos") +ifeq ($(VERSION_ID),"7") + $(AT)sed -i.bak s@'SRCS-y += ethtool/igb/igb_main.c'@'#SRCS-y += ethtool/igb/igb_main.c'@g $(WORK_DIR)/lib/librte_eal/linuxapp/kni/Makefile +endif +endif # RHEL 7.3 specific config changes to compile ifeq ($(ID),"rhel") ifeq ($(VERSION_ID),"7.3") |