File: load-devel-config

package info (click to toggle)
dpdk 16.11-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 37,340 kB
  • sloc: ansic: 506,203; python: 3,088; makefile: 2,989; sh: 2,283; perl: 32
file content (12 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
# 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