From a2826c02066bc40a65952e3a55b0c1327d04420f Mon Sep 17 00:00:00 2001
From: Erik Kooistra <kooistra@astron.nl>
Date: Tue, 27 May 2014 06:50:45 +0000
Subject: [PATCH] Echo compile errors to transcript instead of puts to stderr
 in shell.

---
 tools/modelsim/commands.do | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/modelsim/commands.do b/tools/modelsim/commands.do
index f338548919..1141f2e4aa 100644
--- a/tools/modelsim/commands.do
+++ b/tools/modelsim/commands.do
@@ -178,7 +178,7 @@ proc mk args {
     foreach cmd $arg_cmd {
         foreach lib $arg_lib {
             if { [ catch { eval ["mk_$cmd" $lib] } msg ] } {
-                puts stderr $msg
+                echo $msg
             }
         }
     }
-- 
GitLab