cc0ee4d537
Quoting the first line of the script: "#! /bin/echo must be loaded with ." Given that we should drop the .sh file ending as well as the executable flag - both are not needed to source the file. Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
13 lines
420 B
Plaintext
13 lines
420 B
Plaintext
# Load DPDK devel config and allow override
|
|
# from system file
|
|
test ! -r /etc/dpdk/devel.config ||
|
|
. /etc/dpdk/devel.config
|
|
# from user file
|
|
test ! -r ~/.config/dpdk/devel.config ||
|
|
. ~/.config/dpdk/devel.config
|
|
# from local file
|
|
test ! -r $(dirname $(readlink -m $0))/../.develconfig ||
|
|
. $(dirname $(readlink -m $0))/../.develconfig
|
|
|
|
# The config files must export variables in the shell style
|