From 8366c945925a223dfb38786d4336394e5efc7114 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Thu, 26 Oct 2017 22:10:03 +0000 Subject: 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. --- openocd/openocd.common.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openocd/openocd.common.cfg') 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] } } -- cgit