diff mbox

[ovs-dev,branch-2.6] travis: Fix path of DPDK directory

Message ID cac1279af4ad722eed8f56385e26a6b2de0bc9fe.1493285477.git.tredaelli@redhat.com
State Accepted
Headers show

Commit Message

Timothy Redaelli April 27, 2017, 10:18 a.m. UTC
Call configure with --with-dpdk=./dpdk-stable-$DPDK_VER/build
instead of --with-dpdk=./dpdk-$DPDK_VER/build

Fixes: c007c58af492 ("docs: Use DPDK 16.07.2 stable release")
CC: Ian Stokes <ian.stokes@intel.com>
Tested-at: https://travis-ci.org/drizzt/ovs/builds/226330348
Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
---
 .travis/linux-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Joe Stringer April 28, 2017, 12:33 a.m. UTC | #1
On 27 April 2017 at 03:18, Timothy Redaelli <tredaelli@redhat.com> wrote:
> Call configure with --with-dpdk=./dpdk-stable-$DPDK_VER/build
> instead of --with-dpdk=./dpdk-$DPDK_VER/build
>
> Fixes: c007c58af492 ("docs: Use DPDK 16.07.2 stable release")
> CC: Ian Stokes <ian.stokes@intel.com>
> Tested-at: https://travis-ci.org/drizzt/ovs/builds/226330348
> Signed-off-by: Timothy Redaelli <tredaelli@redhat.com>
> ---

Thanks, applied to branch-2.6.
diff mbox

Patch

diff --git a/.travis/linux-build.sh b/.travis/linux-build.sh
index 81c209a..f15f706 100755
--- a/.travis/linux-build.sh
+++ b/.travis/linux-build.sh
@@ -87,7 +87,7 @@  if [ "$DPDK" ]; then
         # Disregard cast alignment errors until DPDK is fixed
         CFLAGS="$CFLAGS -Wno-cast-align"
     fi
-    EXTRA_OPTS="$EXTRA_OPTS --with-dpdk=./dpdk-$DPDK_VER/build"
+    EXTRA_OPTS="$EXTRA_OPTS --with-dpdk=./dpdk-stable-$DPDK_VER/build"
 elif [ "$CC" != "clang" ]; then
     # DPDK headers currently trigger sparse errors
     SPARSE_FLAGS="$SPARSE_FLAGS -Wsparse-error"