From 50318b42cddb30210267f482199f3a2c082b55eb Mon Sep 17 00:00:00 2001 From: Mark Winkel Date: Tue, 19 Dec 2023 18:08:09 -0500 Subject: [PATCH] Fix: tdic uses correct env var and path to launch tcl --- tdic/tdic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdic/tdic.c b/tdic/tdic.c index 92161e7e54..b547cdef5b 100644 --- a/tdic/tdic.c +++ b/tdic/tdic.c @@ -315,7 +315,7 @@ int main(int argc, char **argv) } else if (!strncmp(line_in, "tcl", 3)) { - strcpy(line_in, "$MDSPLUS/bin/tcl"); /* move the text to the left */ + strcpy(line_in, "$MDSPLUS_DIR/bin/mdstcl"); /* move the text to the left */ system(line_in); } #ifdef NEVER