X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fbash%2Ffunction%2Fdpdk.sh;h=4298e79e6266ac2c4548f832174056a1f474aacf;hb=91ff7a3f99ecb6e1e849bb9ee0b58b22d0be0b5a;hp=1654cf811bdd0de46afa260437441a110bff3398;hpb=018dc06b3cf5fdd4733a1221f9592a48ddd6664c;p=csit.git diff --git a/resources/libraries/bash/function/dpdk.sh b/resources/libraries/bash/function/dpdk.sh index 1654cf811b..4298e79e62 100644 --- a/resources/libraries/bash/function/dpdk.sh +++ b/resources/libraries/bash/function/dpdk.sh @@ -108,6 +108,12 @@ function dpdk_compile () { sed -i "${sed_i40e}" "${sed_file}" || die "Patch failed" + sed_build_fix='s/#include <\(rte_ethdev.*.h\)>/#include "\1"/g' + # can't put the filename in quotes so that shell expands it + sed -i "${sed_build_fix}" ./lib/librte_ethdev/rte_ethdev*.h || { + die "DPDK build patch failed" + } + # Compile make install T="${arch}"-"${machine}"-linuxapp-gcc -j || { die "Failed to compile DPDK!"