From e634bb8db1dfad157b67a6766c0e882c3b550353 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Tue, 5 Jan 2016 13:31:07 -0700 Subject: [PATCH] autotest: use generic DPDK path on Linux Switch to /usr/local/share/dpdk on Linux to use the latest installed DPDK. This is the filesystem layout from building DPDK with: make install T=x86_64-native-linuxapp-gcc DESTDIR=/usr/local Change-Id: I95cb0a3ee2ad1fcc89f6abb73ff0005aa65110e5 Signed-off-by: Daniel Verkamp --- scripts/autotest_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/autotest_common.sh b/scripts/autotest_common.sh index 59aa42ec9..7a4d02508 100755 --- a/scripts/autotest_common.sh +++ b/scripts/autotest_common.sh @@ -10,7 +10,7 @@ case `uname` in MAKEFLAGS=${MAKEFLAGS:--j$(sysctl -a | egrep -i 'hw.ncpu' | awk '{print $2}')} ;; Linux) - DPDK_DIR=/usr/local/dpdk-2.1.0/x86_64-native-linuxapp-gcc + DPDK_DIR=/usr/local/share/dpdk/x86_64-native-linuxapp-gcc MAKE=make MAKEFLAGS=${MAKEFLAGS:--j$(nproc)} MAKECONFIG="$MAKECONFIG CONFIG_COVERAGE=y"