summaryrefslogtreecommitdiff
path: root/openocd/openocd.common.cfg
diff options
context:
space:
mode:
authorKarl Palsson <karlp@tweak.net.au>2017-10-26 22:10:03 +0000
committerKarl Palsson <karlp@tweak.net.au>2017-10-26 22:10:03 +0000
commit8366c945925a223dfb38786d4336394e5efc7114 (patch)
treecaa0680187d7d54ffc6ad0d05fff41fa2724da18 /openocd/openocd.common.cfg
parent0d9dca3ac952c34dffe95976e04d6098def8fda9 (diff)
downloadolsndot-8366c945925a223dfb38786d4336394e5efc7114.tar.gz
olsndot-8366c945925a223dfb38786d4336394e5efc7114.tar.bz2
olsndot-8366c945925a223dfb38786d4336394e5efc7114.zip
common openocd: use -s to find files from test dirs.
The sourcing of the common.cfg and the optional local files was failing when invoked from a test directory. Use -s and properly use [find ...] to search paths nicely.
Diffstat (limited to 'openocd/openocd.common.cfg')
-rw-r--r--openocd/openocd.common.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/openocd/openocd.common.cfg b/openocd/openocd.common.cfg
index b601cde..188b484 100644
--- a/openocd/openocd.common.cfg
+++ b/openocd/openocd.common.cfg
@@ -5,6 +5,6 @@
proc optional_local { LOCAL_FILE } {
if { [ file exists $LOCAL_FILE ] } {
puts "Loading custom local settings from $LOCAL_FILE"
- source $LOCAL_FILE
+ source [find $LOCAL_FILE]
}
}